:root {
    --primary: #5b5ce2;
    --primary-dark: #4546c8;
    --primary-deep: #3026c9;
    --violet: #7c5ce7;
    --teal: #14b8a6;
    --teal-dark: #0d9488;

    --heading: #0f172a;
    --text: #475569;
    --muted: #64748b;

    --background: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;

    --purple-soft: #efefff;
    --teal-soft: #e9fbf8;
    --blue-soft: #eaf3ff;
    --orange-soft: #fff3e5;

    --shadow:
        0 30px 80px rgba(15, 23, 42, .10);

    --shadow-small:
        0 12px 35px rgba(15, 23, 42, .07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--heading);
    background: var(--background);

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

svg {
    display: block;
}

.public-site {
    min-height: 100vh;
}


/* -------------------------------------------------------
   HEADER
------------------------------------------------------- */

.public-header {
    position: relative;
    z-index: 100;

    background: rgba(255, 255, 255, .80);
    border-bottom: 1px solid rgba(226, 232, 240, .8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.public-header-inner {
    width: min(1180px, calc(100% - 40px));
    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo img {
    display: block;

    width: auto;
    height: 52px;

    object-fit: contain;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-login {
    color: var(--text);

    font-size: 14px;
    font-weight: 700;

    transition: color .18s ease;
}

.nav-login:hover {
    color: var(--primary);
}


/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */

.button {
    border: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 13px;

    font-weight: 750;
    cursor: pointer;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button svg {
    width: 17px;
    height: 17px;
}

.button-small {
    min-height: 44px;
    padding: 0 17px;

    font-size: 13px;
}

.button-large {
    min-height: 54px;
    padding: 0 23px;

    font-size: 15px;
}

.button-full {
    width: 100%;
    min-height: 52px;

    padding: 0 20px;
}

.button-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #6157ef 0%,
            #4338ca 100%
        );

    box-shadow:
        0 14px 30px rgba(79, 70, 229, .24);
}

.button-primary:hover {
    box-shadow:
        0 18px 38px rgba(79, 70, 229, .32);
}

.button-secondary {
    color: var(--heading);

    background: rgba(255, 255, 255, .8);

    border:
        1px solid rgba(203, 213, 225, .9);
}

.button-secondary:hover {
    background: #ffffff;
    border-color: #c4bfff;
}

.button-outline {
    color: var(--heading);

    background: #ffffff;
    border: 1px solid var(--border);
}

.button-outline:hover {
    color: var(--primary);
    border-color: #c7c4ff;

    background: #fafaff;
}

.button-white {
    color: #3730a3;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .12);
}


/* -------------------------------------------------------
   HOMEPAGE HERO
------------------------------------------------------- */

.home-hero {
    position: relative;
    overflow: hidden;

    min-height: 735px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafaff 55%,
            #f8fafc 100%
        );
}

.home-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);
    opacity: .7;

    pointer-events: none;
}

.home-glow-one {
    width: 440px;
    height: 440px;

    top: -180px;
    left: -160px;

    background: rgba(91, 92, 226, .22);
}

.home-glow-two {
    width: 440px;
    height: 440px;

    right: -150px;
    bottom: -160px;

    background: rgba(20, 184, 166, .18);
}

.home-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    min-height: 690px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, .98fr);

    gap: 75px;
    align-items: center;

    padding: 72px 0 90px;
}

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px 7px 8px;

    color: #4338ca;

    background:
        linear-gradient(
            90deg,
            #eeeeff,
            #f1fbfa
        );

    border: 1px solid #dfddff;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
}

.hero-badge-icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--primary);
}

.hero-badge-icon svg {
    width: 14px;
    height: 14px;
}

.hero-content h1 {
    margin: 24px 0 22px;

    max-width: 650px;

    font-size:
        clamp(50px, 6vw, 78px);

    line-height: .99;

    letter-spacing: -.065em;

    color: #111827;
}

.hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #5b5ce2 5%,
            #6958e8 45%,
            #14b8a6 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    max-width: 610px;

    margin: 0;

    color: var(--text);

    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 31px;
}

.hero-types {
    margin-top: 27px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}

.hero-types span {
    padding: 7px 11px;

    color: var(--muted);

    background: rgba(255, 255, 255, .78);

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 750;
}


/* -------------------------------------------------------
   HERO PRODUCT SHOWCASE
------------------------------------------------------- */

.hero-showcase {
    position: relative;

    min-height: 570px;

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

.showcase-orbit {
    position: absolute;

    border-radius: 50%;
}

.showcase-orbit-one {
    width: 470px;
    height: 470px;

    background:
        linear-gradient(
            135deg,
            rgba(91, 92, 226, .16),
            rgba(20, 184, 166, .11)
        );
}

.showcase-orbit-two {
    width: 350px;
    height: 350px;

    border:
        1px solid rgba(91, 92, 226, .13);
}

.showcase-card {
    position: relative;
    z-index: 2;

    width: min(100%, 430px);

    padding: 22px;

    background:
        rgba(255, 255, 255, .94);

    border:
        1px solid rgba(226, 232, 240, .95);

    border-radius: 27px;

    box-shadow:
        0 40px 90px rgba(39, 39, 92, .16);

    backdrop-filter: blur(16px);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf1f6;
}

.showcase-brand {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 11px;
}

.showcase-brand img {
    width: 42px;
    height: 42px;

    border-radius: 11px;

    object-fit: cover;

    box-shadow:
        0 8px 20px rgba(79, 70, 229, .18);
}

.showcase-brand div {
    min-width: 0;
}

.showcase-brand strong,
.showcase-brand span {
    display: block;
}

.showcase-brand strong {
    font-size: 13px;
}

.showcase-brand span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
}

.live-pill {
    flex: none;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 9px;

    color: #15803d;
    background: #ecfdf3;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
}

.live-pill span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;
}

.showcase-profile {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 20px 2px 17px;
}

.showcase-avatar {
    width: 46px;
    height: 46px;

    flex: none;

    display: grid;
    place-items: center;

    color: #ffffff;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #5b5ce2,
            #14b8a6
        );

    font-weight: 800;
}

.showcase-profile strong,
.showcase-profile span {
    display: block;
}

.showcase-profile strong {
    font-size: 13px;
}

.showcase-profile span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
}

.showcase-block {
    min-height: 65px;

    margin-bottom: 10px;
    padding: 11px 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    background: #ffffff;

    border: 1px solid #e8edf3;
    border-radius: 14px;

    box-shadow:
        0 6px 18px rgba(15, 23, 42, .035);
}

.block-icon {
    width: 39px;
    height: 39px;

    flex: none;

    display: grid;
    place-items: center;

    border-radius: 11px;
}

.block-icon svg {
    width: 17px;
    height: 17px;
}

.block-icon-purple {
    color: #5b5ce2;
    background: var(--purple-soft);
}

.block-icon-teal {
    color: #0d9488;
    background: var(--teal-soft);
}

.block-icon-orange {
    color: #ea580c;
    background: var(--orange-soft);
}

.block-copy {
    flex: 1;
    min-width: 0;
}

.block-copy strong,
.block-copy span {
    display: block;
}

.block-copy strong {
    color: #1e293b;

    font-size: 11px;
}

.block-copy span {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 9px;
}

.block-arrow {
    width: 15px;
    height: 15px;

    color: #94a3b8;
}

.showcase-insight {
    margin-top: 16px;

    padding: 16px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            135deg,
            #f6f5ff,
            #f3fbfa
        );

    border: 1px solid #e7e5ff;
    border-radius: 15px;
}

.showcase-insight strong,
.showcase-insight span {
    display: block;
}

.insight-label {
    color: var(--muted);

    font-size: 9px;
}

.showcase-insight strong {
    margin-top: 5px;

    font-size: 14px;
}

.insight-chart {
    height: 38px;

    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.insight-chart span {
    width: 5px;

    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            #5b5ce2,
            #14b8a6
        );
}

.floating-card {
    position: absolute;
    z-index: 4;

    background:
        rgba(255, 255, 255, .96);

    border: 1px solid #e5e7eb;
    border-radius: 15px;

    box-shadow:
        0 18px 42px rgba(15, 23, 42, .12);
}

.floating-enquiry {
    left: -45px;
    bottom: 105px;

    padding: 12px 15px;

    display: flex;
    align-items: center;

    gap: 10px;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    color: #0d9488;

    background: var(--teal-soft);

    border-radius: 10px;
}

.floating-icon svg {
    width: 16px;
    height: 16px;
}

.floating-enquiry span,
.floating-enquiry strong {
    display: block;
}

.floating-enquiry span {
    color: var(--muted);

    font-size: 8px;
}

.floating-enquiry strong {
    margin-top: 3px;

    font-size: 9px;
}

.floating-growth {
    right: -25px;
    top: 90px;

    padding: 13px 16px;
}

.growth-value {
    color: var(--primary);

    font-size: 21px;
    font-weight: 850;
}

.floating-growth span {
    color: var(--muted);

    font-size: 8px;
}


/* -------------------------------------------------------
   ACTION SECTION
------------------------------------------------------- */

.action-section {
    padding: 100px 0;

    background: #ffffff;
}

.action-section-inner {
    width: min(1100px, calc(100% - 40px));

    margin: 0 auto;

    text-align: center;
}

.section-eyebrow {
    color: var(--primary);

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .13em;
}

.action-section h2 {
    margin: 12px 0 13px;

    font-size:
        clamp(34px, 4vw, 50px);

    letter-spacing: -.045em;
}

.action-section > div > p {
    max-width: 630px;

    margin: 0 auto;

    color: var(--text);

    line-height: 1.7;
}

.action-grid {
    margin-top: 50px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    text-align: left;
}

.action-card {
    padding: 27px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 19px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, .045);
}

.action-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 13px;
}

.action-icon svg {
    width: 20px;
    height: 20px;
}

.action-purple {
    color: var(--primary);
    background: var(--purple-soft);
}

.action-teal {
    color: var(--teal-dark);
    background: var(--teal-soft);
}

.action-blue {
    color: #2563eb;
    background: var(--blue-soft);
}

.action-card h3 {
    margin: 19px 0 8px;

    font-size: 17px;
}

.action-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* -------------------------------------------------------
   HOME CTA
------------------------------------------------------- */

.home-cta {
    padding:
        0 20px 70px;

    background: #ffffff;
}

.home-cta-inner {
    width: min(1100px, 100%);

    margin: 0 auto;
    padding: 38px 42px;

    display: flex;
    align-items: center;

    gap: 22px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(20, 184, 166, .55),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #3026c9,
            #5145e5 58%,
            #5b5ce2
        );

    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(67, 56, 202, .22);
}

.home-cta-inner > img {
    width: 70px;
    height: 70px;

    flex: none;

    border-radius: 18px;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .16);
}

.home-cta-inner > div {
    flex: 1;
}

.home-cta-inner span {
    color: rgba(255, 255, 255, .75);

    font-size: 11px;
    font-weight: 700;
}

.home-cta-inner h2 {
    margin: 5px 0 0;

    font-size: 27px;
    letter-spacing: -.035em;
}


/* -------------------------------------------------------
   AUTHENTICATION
------------------------------------------------------- */

.auth-page {
    position: relative;

    overflow: hidden;

    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            135deg,
            #f9faff 0%,
            #f8fafc 50%,
            #f2fbfa 100%
        );
}

.auth-background-shape {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.auth-shape-one {
    width: 400px;
    height: 400px;

    left: -180px;
    top: -150px;

    background: rgba(91, 92, 226, .18);
}

.auth-shape-two {
    width: 420px;
    height: 420px;

    right: -190px;
    bottom: -190px;

    background: rgba(20, 184, 166, .16);
}

.auth-layout {
    position: relative;
    z-index: 2;

    width: min(1120px, calc(100% - 40px));

    min-height: calc(100vh - 82px);

    margin: 0 auto;
    padding: 52px 0 70px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 470px);

    align-items: center;

    gap: 75px;
}

.auth-brand-content {
    max-width: 560px;
}

.auth-app-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 24px;
}

.auth-app-icon img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 19px;

    box-shadow:
        0 18px 38px rgba(79, 70, 229, .24);
}

.auth-brand-eyebrow {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.auth-brand-content h1 {
    max-width: 520px;

    margin: 0;

    color: #111827;

    font-size:
        clamp(44px, 5vw, 64px);

    line-height: 1.02;
    letter-spacing: -.06em;
}

.auth-brand-content h1 span {
    color: var(--primary);
}

.auth-brand-content > p {
    max-width: 500px;

    margin: 20px 0 0;

    color: var(--text);

    font-size: 16px;
    line-height: 1.72;
}

.auth-preview-card {
    max-width: 500px;

    margin-top: 31px;
    padding: 20px;

    background:
        rgba(255, 255, 255, .76);

    border:
        1px solid rgba(226, 232, 240, .9);

    border-radius: 19px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .07);

    backdrop-filter: blur(14px);
}

.auth-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;

    color: var(--text);

    font-size: 10px;
    font-weight: 750;
}

.auth-live {
    padding: 5px 8px;

    color: #15803d;
    background: #ecfdf3;

    border-radius: 999px;

    font-size: 8px;
}

.auth-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}

.auth-preview-stats > div {
    padding: 12px;

    background: #ffffff;

    border: 1px solid #edf1f5;
    border-radius: 11px;
}

.auth-preview-stats span,
.auth-preview-stats strong {
    display: block;
}

.auth-preview-stats span {
    color: var(--muted);

    font-size: 8px;
}

.auth-preview-stats strong {
    margin-top: 5px;

    font-size: 17px;
}

.auth-preview-message {
    margin-top: 10px;
    padding: 12px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #334155;
    background: var(--teal-soft);

    border-radius: 11px;

    font-size: 9px;
    font-weight: 700;
}

.auth-preview-message > div {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    color: var(--teal-dark);
    background: #ffffff;

    border-radius: 9px;
}

.auth-preview-message svg {
    width: 14px;
    height: 14px;
}


/* -------------------------------------------------------
   AUTH FORM
------------------------------------------------------- */

.auth-form-panel {
    width: 100%;
}

.auth-form-container {
    width: 100%;

    padding: 35px;

    background:
        rgba(255, 255, 255, .96);

    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 24px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(18px);
}

.register-form-container {
    padding-top: 31px;
    padding-bottom: 31px;
}

.auth-mobile-brand {
    display: none;
}

.auth-form-heading {
    margin-bottom: 26px;
}

.auth-form-heading > span {
    display: block;

    margin-bottom: 6px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .11em;
}

.auth-form-heading h2 {
    margin: 0;

    font-size: 27px;
    letter-spacing: -.04em;
}

.auth-form-heading p {
    margin: 7px 0 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
}

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 12px;
    font-weight: 750;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8;

    pointer-events: none;
}

.input-icon svg {
    width: 17px;
    height: 17px;
}

.input-wrap input {
    width: 100%;
    height: 50px;

    padding:
        0 14px
        0 43px;

    color: var(--heading);
    background: #ffffff;

    border: 1px solid #dbe3ec;
    border-radius: 12px;

    outline: 0;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.input-wrap input::placeholder {
    color: #a8b3c3;
}

.input-wrap input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(91, 92, 226, .09);
}

.form-error {
    margin-top: 6px;

    color: #dc2626;

    font-size: 10px;
    line-height: 1.45;
}

.login-options {
    display: flex;
    align-items: center;

    margin: 1px 0 20px;
}

.remember-option {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--muted);

    cursor: pointer;

    font-size: 11px;
}

.remember-option input {
    accent-color: var(--primary);
}

.button-auth {
    min-height: 53px;
}

.auth-divider {
    position: relative;

    margin: 23px 0;

    text-align: center;
}

.auth-divider::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background: var(--border);
}

.auth-divider span {
    position: relative;

    padding: 0 11px;

    color: #94a3b8;
    background: #ffffff;

    font-size: 10px;
}

.auth-security {
    margin-top: 23px;

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

    gap: 6px;

    color: #94a3b8;

    font-size: 9px;
}

.auth-security svg {
    width: 13px;
    height: 13px;
}

.register-password-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.register-benefits {
    max-width: 500px;

    margin-top: 31px;

    display: grid;

    gap: 11px;
}

.register-benefit {
    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--text);

    font-size: 12px;
    font-weight: 650;
}

.register-benefit > div {
    width: 31px;
    height: 31px;

    flex: none;

    display: grid;
    place-items: center;

    color: var(--teal-dark);
    background: var(--teal-soft);

    border-radius: 9px;
}

.register-benefit svg {
    width: 15px;
    height: 15px;
}

.register-note {
    margin: 14px 8px 0;

    color: #94a3b8;

    text-align: center;

    font-size: 9px;
    line-height: 1.5;
}


/* -------------------------------------------------------
   TABLET
------------------------------------------------------- */

@media (max-width: 1000px) {

    .home-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 60px;
    }

    .hero-content {
        max-width: 700px;

        text-align: center;

        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-actions,
    .hero-types {
        justify-content: center;
    }

    .hero-showcase {
        width: min(100%, 550px);

        margin: 0 auto;
    }

    .floating-enquiry {
        left: 0;
    }

    .floating-growth {
        right: 0;
    }

    .auth-layout {
        grid-template-columns: 1fr;

        max-width: 520px;

        padding-top: 40px;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-mobile-brand {
        display: block;

        width: 58px;
        height: 58px;

        margin-bottom: 20px;
    }

    .auth-mobile-brand img {
        width: 100%;
        height: 100%;

        border-radius: 15px;

        box-shadow:
            0 13px 30px rgba(79, 70, 229, .20);
    }

}


/* -------------------------------------------------------
   MOBILE
------------------------------------------------------- */

@media (max-width: 700px) {

    .public-header-inner {
        width: calc(100% - 28px);
        height: 70px;
    }

    .brand-logo img {
        height: 36px;
    }

    .public-nav {
        gap: 8px;
    }

    .nav-login {
        display: inline-flex;

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

        color: #475569;

        font-size: 12px;
        font-weight: 750;

        white-space: nowrap;
    }

    .button-small {
        min-height: 38px;

        padding: 0 11px;

        font-size: 12px;
    }

    .home-hero-inner {
        width: calc(100% - 28px);

        padding:
            44px 0
            65px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        width: 100%;

        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-types {
        gap: 7px;
    }

    .hero-showcase {
        min-height: 510px;
    }

    .showcase-card {
        padding: 16px;

        border-radius: 21px;
    }

    .floating-card {
        display: none;
    }

    .action-section {
        padding: 72px 0;
    }

    .action-section-inner {
        width: calc(100% - 28px);
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .home-cta {
        padding:
            0 14px
            45px;
    }

    .home-cta-inner {
        padding: 28px 22px;

        display: block;

        text-align: center;
    }

    .home-cta-inner > img {
        margin: 0 auto 17px;
    }

    .home-cta-inner h2 {
        margin-bottom: 22px;

        font-size: 24px;
    }

    .home-cta-inner .button {
        width: 100%;
    }

    .auth-page {
        min-height:
            calc(100vh - 70px);
    }

    .auth-layout {
        width: calc(100% - 24px);

        min-height:
            calc(100vh - 70px);

        padding:
            25px 0
            45px;
    }

    .auth-form-container {
        padding:
            27px 20px;

        border-radius: 20px;
    }

    .auth-form-heading h2 {
        font-size: 24px;
    }

    .register-password-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }
	
	@media (max-width: 420px) {

    .brand-logo img {
        height: 32px;
    }

    .public-nav {
        gap: 7px;
    }

    .nav-login {
        font-size: 11px;
    }

    .button-small {
        min-height: 36px;

        padding: 0 9px;

        font-size: 11px;
    }

}

}