:root {
    --public-ink: #222;
    --public-muted: #666;
    --public-surface: #fff;
    --public-border-width: 2px;
    --public-border: var(--public-border-width) solid var(--public-ink);
    --public-divider: 1px solid #ccc;
    --public-h1-max: 3.25rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--public-surface);
    color: var(--public-ink);
}

.site-divider {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: var(--public-border);
}
.home-main {
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.public-home {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    width: 320px;
    max-width: 100%;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 6vw, var(--public-h1-max));
    font-weight: 700;
    margin-bottom: 2rem;
}
h1.header {color:#000;text-decoration: none;
	
}

home-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border: var(--public-border);
   
}

home-nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem; /* Fixed size */
    font-weight: 700;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border: var(--public-border);
}

nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem; /* Fixed size */
}

        nav a:hover {
            color: #666;
        }
        
        
        
        
        .menu-toggle,
.menu-button {
    display: none;
}

.page-header .top-nav {
    display: flex;
    gap: 2rem;
    border: 0;
    padding: 0;
}

.page-header .top-nav a,
footer a {
    font-weight: 700;
}

        
.demo-page {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.7fr);
    gap: 4rem;

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;

    align-items: start;
}


/* LEFT COLUMN */

.demo-left {
    min-width: 0;
}

.demo-left .form-intro {
    margin-bottom: 2rem;
}

.demo-left .form-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.demo-left .form-intro p {
    color: #666;
    line-height: 1.7;
}

.demo-login-panel {
    display: grid;
    gap: 1.5rem;
}

.demo-credentials {
    border: var(--public-border);
    padding: 1.25rem;
}

.demo-credentials .muted {
    margin: 0;
}

.demo-credentials p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.demo-credentials p:last-child {
    margin-bottom: 0;
}


/* Dashboard buttons stacked full width */

.demo-login-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;

    width: 100%;
    padding: 0;
    border: 0;
}

.demo-login-form button {
    width: 100%;
    margin: 0;
}


/* RIGHT COLUMN */

.demo-right {
    min-width: 0;
}

.demo-frontend-intro {
    margin-bottom: 1.5rem;
}

.demo-frontend-heading {
    margin: 0 0 0.5rem;
}

.demo-frontend-intro .muted {
    margin: 0;
}


/* Frontend tiles */

.demo-frontend-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;

    width: 100%;
}

.demo-frontend-item {
    position: relative;
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    text-decoration: none;
}

.demo-frontend-item img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.3s ease;
}

.demo-frontend-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1rem;

    background: rgba(80, 80, 80, 0.45);

    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.demo-frontend-item:hover img {
    transform: scale(1.05);
}

.demo-frontend-item:hover .demo-frontend-overlay {
    background: rgba(50, 50, 50, 0.55);
}


/* Tablet */

@media (max-width: 1000px) {

    .demo-page {
        grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
        gap: 2.5rem;
    }

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


/* Mobile */

@media (max-width: 700px) {

    .demo-page {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .demo-left,
    .demo-right {
        width: 100%;
    }

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

    .demo-left .form-intro h2 {
        font-size: 2.25rem;
    }
}     
        
        
        
        footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
}

footer a {
    color: #222;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 3rem;
    border: var(--public-border);
    width: 100%;
}

.login-form label {
    text-align: left;
}

.login-form span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.login-form input {
    width: 100%;
    padding: 0.75rem;
    border: var(--public-border);
    font: inherit;
}

.login-form button,
.button.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: .75rem 1rem;
    border: var(--public-border);
    background: var(--public-ink);
    color: var(--public-surface);
    font: inherit;
    cursor: pointer;
}

.login-form button:hover,
.login-form button:focus-visible,
.button.button--primary:hover,
.button.button--primary:focus-visible {
    border-color: var(--public-muted);
    background: var(--public-muted);
    color: var(--public-surface);
}

.muted {
    color: #666;
    margin-bottom: 1rem;
}

.signup-link {
    margin-top: 1rem;
    margin-bottom: 0;
}

.signup-link a {
    color: #222;
}

.error {
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: #fee;
    color: #900;
    border: 1px solid #900;
}

.form-page {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.2fr);
    gap: 4rem;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 5rem 2rem;
    align-items: start;
}

.form-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-intro p {
    line-height: 1.7;
    color: #666;
}

.form-panel {
    border: var(--public-border);
    padding: 2rem;
}

.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
    gap: 1.5rem;
    text-align: center;
}

.login-page .form-intro h2 {
    font-size: 2.4rem;
}

.login-page .form-panel {
    width: 100%;
}

.login-page .login-form {
    border: 0;
    padding: 0;
}

.login-page .login-form label {
    text-align: left;
}

.signup-page {
    grid-template-columns: 1fr;
    max-width: 1120px;
}

.signup-page .form-intro {
    max-width: 720px;
}

.signup-page .form-panel {
    border: 0;
    padding: 0;
}

.signup-page .login-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.signup-page .login-form label,
.signup-page .login-form button {
    margin: 0;
}

.signup-page .login-form label:first-child,
.signup-page .login-form button {
    grid-column: 1 / -1;
}

.demo-frontend-button {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    text-align: center;
}

.login-form select {
    width: 100%;
    padding: 0.75rem;
    border: var(--public-border);
    background: #fff;
    font: inherit;
}










a.logo {
text-decoration: none;	
color:#000;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 0;
}

.page-header h1{
    margin: 0;
    font-size: 2rem;
   
}



.page {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: 5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: start;
}

.hero {
    position: sticky;
    top: 5rem;
    min-width: 0;
    align-self: start;
}

.hero .button {
    margin-top: 0.5rem;
}
.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #666;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.content-grid article {
    border: var(--public-border);
    padding: 2rem;
}

.content-grid h3 {
    margin-bottom: 1rem;
}

.content-grid p {
    line-height: 1.7;
    color: #666;
    overflow-wrap: anywhere;
}

.full-width-info {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 3rem;
    align-items: start;
    border-top: var(--public-border);
    padding-top: 2rem;
}

.full-width-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.full-width-info p {
    max-width: 860px;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.demo-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: center;   /* Horizontal */
    align-self: center;     /* Vertical */
    width: 100%;
    max-width: 220px;
}

.demo-actions .button {
    width: 100%;
    margin-top: 0;
    text-align: center;
}

.button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    border: var(--public-border);
    color: var(--public-ink);
    text-decoration: none;
    transition: .2s;
}
.button:hover {
    background: var(--public-ink);
    color: var(--public-surface);
}

/* About page */
.about-page {
    row-gap: clamp(3.5rem, 8vw, 7rem);
}

.about-page > section {
    min-width: 0;
}

.about-hero {
    position: static;
}

.about-sticky-actions {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: .65rem clamp(1rem, 4vw, 2rem);
    border: 0;
    border-bottom: var(--public-border);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
}

.about-sticky-actions.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.about-sticky-actions__inner {
    display: flex;
    justify-content: flex-end;
    gap: .65rem;
    width: min(1200px, 100%);
    margin-inline: auto;
}

.about-sticky-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: .55rem 1rem;
    background: #fff;
    font: inherit;
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

.about-sticky-actions .button:hover,
.about-sticky-actions .button:focus-visible {
    background: #222;
    color: #fff;
}

.about-hero h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.7rem, 5vw, var(--public-h1-max));
    line-height: .98;
    letter-spacing: -.055em;
}

.about-hero .hero-actions,
.final-cta .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.about-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 0;
    font: inherit;
    font-weight: 650;
    text-align: center;
    cursor: pointer;
}

.about-page .about-core-benefits {
    grid-column: 2;
}

.about-page .about-card-grid {
    display: grid;
    gap: 1rem;
}

.about-page .about-control-grid,
.about-page .about-developer-features {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .about-card-grid article {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.about-page .about-card-grid :is(h2, h3) {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.2;
}

.about-page .about-card-grid p {
    margin: 0;
}

.about-page :is(
    .wordpress-comparison,
    .audience-grid,
    .founder-story,
    .demo-section,
    .final-cta
) {
    grid-column: 1 / -1;
}

.about-page .full-width-info {
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, .75fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.about-page .full-width-info h2,
.about-page :is(.wordpress-comparison, .audience-grid, .founder-story, .demo-section, .final-cta) h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.ai-examples,
.founder-points {
    display: grid;
    gap: .75rem;
}

.ai-examples blockquote,
.full-width-info blockquote {
    margin: 0;
    padding: .75rem 0 .75rem 1rem;
    border-left: var(--public-border);
    color: #444;
    line-height: 1.5;
}

.wordpress-comparison {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.5fr);
    gap: 1.5rem clamp(2rem, 6vw, 5rem);
    padding-top: 2rem;
    border-top: var(--public-border);
}

.comparison-table-wrap {
    min-width: 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table :is(th, td) {
    width: 50%;
    padding: .9rem 1rem;
    border-bottom: var(--public-divider);
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.comparison-table th {
    border-bottom: var(--public-border);
}

.wordpress-comparison .section-heading > p {
    margin-bottom: 1rem;
    max-width: 760px;
    color: #555;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: var(--public-border);
}

.feature-list > div {
    padding: .8rem .5rem;
    border-bottom: var(--public-divider);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.audience-grid article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border: var(--public-border);
}

.audience-grid article > p,
.founder-story p,
.demo-section p,
.final-cta p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.audience-grid article .button {
    margin-top: auto;
}

.eyebrow {
    color: #222 !important;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.founder-story,
.demo-section {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, .65fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
    padding-top: 2rem;
    border-top: var(--public-border);
}

.founder-points {
    padding-left: 1.25rem;
    border-left: var(--public-border);
}

.founder-points p {
    margin: 0;
    padding-bottom: .7rem;
    border-bottom: var(--public-divider);
}

.demo-section {
    align-items: center;
}

.demo-section .demo-actions form,
.demo-section .demo-actions button {
    width: 100%;
}

.final-cta {
    position: static;
    display: grid;
    justify-items: center;
    padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem);
    border-block: var(--public-border);
    text-align: center;
}

.final-cta > :is(p, h2) {
    max-width: 800px;
}

.final-cta .hero-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    .about-page .about-core-benefits {
        grid-column: auto;
    }

    .about-page .about-core-benefits,
    .about-page .about-control-grid,
    .about-page .about-developer-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wordpress-comparison {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {
    .about-page .about-core-benefits,
    .about-page .about-control-grid,
    .about-page .about-developer-features,
    .about-page .full-width-info,
    .audience-grid,
    .founder-story,
    .demo-section {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: clamp(2.6rem, 13vw, var(--public-h1-max));
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .demo-actions {
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 420px) {
    .about-hero .hero-actions,
    .final-cta .hero-actions {
        display: grid;
        width: 100%;
    }

    .about-page .button {
        width: 100%;
    }

    .about-sticky-actions {
        padding-inline: .6rem;
    }

    .about-sticky-actions__inner {
        display: flex;
        justify-content: flex-end;
        gap: .45rem;
    }

    .about-sticky-actions .button {
        width: auto;
        flex: 0 1 auto;
        padding-inline: .45rem;
        font-size: .82rem;
        white-space: normal;
    }

    .comparison-table :is(th, td) {
        padding: .7rem .45rem;
        font-size: .88rem;
    }
}

/* Help Centre */
.help-centre {
    width: min(1200px, calc(100% - 4rem));
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.help-intro {
    max-width: 760px;
    margin-bottom: 4rem;
}

.help-kicker {
    margin-bottom: .75rem;
    color: #666;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.help-intro h1,
.help-empty h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, var(--public-h1-max));
    line-height: 1;
}

.help-intro > p:not(.help-kicker),
.help-empty > p:not(.help-kicker) {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.7;
}

.help-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 720px;
    margin-top: 2rem;
    border: var(--public-border);
}

.help-search input,
.help-search button {
    min-height: 56px;
    border: 0;
    border-radius: 0;
    font: inherit;
}

.help-search input {
    min-width: 0;
    padding: .9rem 1.1rem;
}

.help-search button {
    padding: .9rem 1.5rem;
    background: #222;
    color: #fff;
    cursor: pointer;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.help-category {
    border-top: var(--public-border);
    padding-top: 1.25rem;
}

.help-category h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.help-category-links {
    display: grid;
}

.help-category-links a {
    display: grid;
    gap: .3rem;
    padding: 1rem 0;
    border-bottom: var(--public-divider);
    color: inherit;
    text-decoration: none;
}

.help-category-links a:hover strong {
    text-decoration: underline;
}

.help-category-links span,
.help-card p {
    color: #666;
    line-height: 1.55;
}

.help-results {
    margin-bottom: 4rem;
}

.help-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.help-section-heading a,
.help-back {
    color: inherit;
}

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

.help-card {
    display: block;
    padding: 1.5rem;
    border: var(--public-border);
    color: inherit;
    text-decoration: none;
}

.help-card:hover {
    background: #f5f5f5;
}

.help-card > span {
    color: #666;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.help-card h3 {
    margin: .7rem 0;
}

.help-search-match {
    padding: 0;
    color: inherit;
    background: rgba(255, 214, 64, .38);
    border-radius: 2px;
}

.help-no-results {
    padding: 1.5rem;
    border: var(--public-border);
    line-height: 1.6;
}

.help-layout {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 760px);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.help-sidebar {
    position: sticky;
    top: 2rem;
}

.help-back {
    display: inline-block;
    margin-bottom: 2rem;
}

.help-sidebar-group {
    padding: 1rem 0;
    border-top: var(--public-divider);
}

.help-sidebar-group h2 {
    margin-bottom: .45rem;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.help-sidebar-group a {
    display: block;
    padding: .4rem 0;
    color: #666;
    line-height: 1.35;
    text-decoration: none;
}

.help-sidebar-group a:hover,
.help-sidebar-group a[aria-current="page"] {
    color: #222;
    text-decoration: underline;
}

.help-article {
    min-width: 0;
}

.help-article h1 {
    margin-bottom: 2rem;
    font-size: clamp(2.3rem, 6vw, var(--public-h1-max));
    line-height: 1.05;
}

.help-article h2 {
    margin: 3rem 0 1rem;
    padding-top: 1.5rem;
    border-top: var(--public-border);
    font-size: 1.55rem;
}

.help-article h3,
.help-article h4 {
    margin: 2rem 0 .75rem;
}

.help-article p,
.help-article li {
    line-height: 1.75;
}

.help-article p {
    margin-bottom: 1.2rem;
}

.help-article ul,
.help-article ol {
    display: grid;
    gap: .65rem;
    margin: 0 0 1.5rem 1.4rem;
}

.help-article a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.help-article code {
    padding: .12em .35em;
    background: #f1f1f1;
    font-size: .92em;
}

.help-article pre {
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 1.25rem;
    overflow-x: auto;
    background: #222;
    color: #fff;
}

.help-article pre code {
    padding: 0;
    background: transparent;
    color: inherit;
    white-space: pre-wrap;
}

.help-empty {
    max-width: 720px;
    padding: 4rem 0;
}

@media (max-width: 900px) {
    .page-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 2rem;
    }

    .page-header nav {
        width: 100%;
        flex-wrap: wrap;
        gap: .75rem 1.25rem;
        padding: 0;
    }

    .page {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }

    .form-page {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .signup-page .login-form {
        grid-template-columns: 1fr;
    }

    .hero {
        position: static;
    }

    .hero h2 {
        font-size: 2.35rem;
    }

    .button {
        margin-top: 1rem;
    }

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

    .help-layout {
        grid-template-columns: 1fr;
    }

    .help-sidebar {
        position: static;
        display: none;
    }
}

@media (max-width: 560px) {
 

    .container {
        width: 100%;
    }

  

    home-nav,
    nav {
        width: 100%;
        padding: 1.25rem;
    }

    .page-header {
        padding: 1.25rem;
    }

    .page-header nav {
        flex-direction: column;
        padding: 0;
    }

    .page {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .form-page {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .form-intro h2 {
        font-size: 2rem;
    }

    .form-panel {
        padding: 1.25rem;
    }

    .hero h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero p {
        margin-bottom: 1rem;
    }

    .content-grid {
        gap: 1rem;
    }

    .content-grid article {
        padding: 1.25rem;
    }

    .full-width-info {
        grid-template-columns: 1fr;
        padding-top: 1.5rem;
    }

    .demo-actions {
        max-width: 320px;
    }

    .help-centre {
        width: calc(100% - 2rem);
        padding: 2.5rem 0 4rem;
    }

    .help-intro {
        margin-bottom: 2.5rem;
    }

    .help-search {
        grid-template-columns: 1fr;
    }

    .help-categories,
    .help-card-grid {
        grid-template-columns: 1fr;
    }

    .help-article h1 {
        margin-bottom: 1.5rem;
    }

    .help-article h2 {
        margin-top: 2.25rem;
    }

 
}
@media (max-width: 560px) {
    .page-header {
        position: relative;
        flex-direction: row;
        align-items: center;
    }

    .menu-button {
        display: block;
        cursor: pointer;
        padding: 0.6rem 0.9rem;
        border: var(--public-border);
        font: inherit;
    }

    .page-header .top-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0rem;
        right: 1.25rem;
        z-index: 10;

        flex-direction: column;
        gap: 0;
        background: #fff;
        border: var(--public-border);
        padding: 0;
    }

    .page-header .top-nav a {
        padding: 1rem;
        border-bottom: 1px solid #222;
    }

    .page-header .top-nav a:last-child {
        border-bottom: 0;
    }

    .menu-toggle:checked + .menu-button + .top-nav {
        display: flex;
    }
}
