@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800;900&display=swap');

:root {
    --landing-ink: #020c27;
    --landing-copy: #233e70;
    --landing-blue: #0967ed;
    --landing-lime: #a8fa00;
    --landing-line: #dce7f8;
    --landing-soft: #f4f8ff;
}

body {
    font-family: "Mulish", sans-serif;
}

.landing-body {
    color: var(--landing-ink);
    background: #fff;
    overflow-x: hidden;
}

.landing-body #footer {
    border-top: 1px solid var(--landing-line);
    background: #fff !important;
}

.landing-container {
    width: calc(100% - 40px);
    max-width: 1440px;
}

.landing-header {
    position: relative;
    z-index: 20;
    border: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
}

.landing-header .navbar {
    border: 0;
}

.landing-logo {
    display: inline-flex;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    color: var(--landing-ink);
    font-family: Arial Black, Arial, sans-serif;
    font-size: 38px;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -3px;
    line-height: 1;
    transform: skew(-5deg);
}

.landing-logo:hover {
    color: var(--landing-ink);
}

.landing-logo i {
    width: 13px;
    height: 13px;
    margin: 0 0 3px 5px;
    border-radius: 50%;
    background: var(--landing-lime);
}

.landing-nav {
    gap: clamp(14px, 2.2vw, 42px);
}

.landing-nav .nav-link,
.landing-login {
    color: var(--landing-ink);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.landing-nav .nav-link:hover,
.landing-login:hover {
    color: var(--landing-blue);
}

.landing-auth {
    gap: 30px;
}

.landing-start {
    min-width: 236px;
    padding: 12px 24px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(105deg, #071020, #001b3b);
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
}

.landing-start span {
    float: right;
    font-size: 25px;
    line-height: 20px;
}

.landing-start:hover {
    color: #fff;
    background: #0b63d9;
}

.landing-menu-button {
    width: 47px;
    height: 42px;
    padding: 6px;
    border: 0;
    box-shadow: none !important;
}

.landing-menu-button span {
    display: block;
    width: 36px;
    height: 4px;
    margin: 6px auto;
    border-radius: 10px;
    background: var(--landing-ink);
}

.landing-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 57% 9%, rgba(208, 236, 255, .62), transparent 25%),
        radial-gradient(circle at 91% 25%, rgba(205, 250, 184, .42), transparent 18%),
        #fff;
}

.landing-hero {
    padding: 50px 0 25px;
}

.landing-hero-row {
    min-height: 435px;
}

.landing-title-wrap {
    position: relative;
}

.landing-title-wrap::before,
.landing-title-wrap::after {
    position: absolute;
    z-index: 2;
    width: 35px;
    height: 39px;
    pointer-events: none;
    content: "";
    background-image: url("/images/line1.svg");
    border-radius: 4px;
}

.landing-title-wrap::before {
    left: -45px;
    bottom: -10px;
    transform: rotate(10deg);
}

.landing-title-wrap::after {
    right: 80px;
    bottom: 52px;
    transform: rotate(194deg);
}

.landing-title {
    margin: 0 0 22px;
    color: var(--landing-ink);
    background: none;
    font-family: Arial Black, Arial, sans-serif;
    font-size: clamp(54px, 5.15vw, 82px);
    font-weight: 950;
    font-style: italic;
    letter-spacing: -5px;
    line-height: .88;
    text-align: left;
    transform: skew(-4deg);
}

.landing-title span {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 15px 10px 10px;
    border-radius: 18px;
    color: var(--landing-ink);
    background: linear-gradient(105deg, #a8fa00, #b8ff1c);
    transform: skew(4deg) rotate(-2deg);
}

.landing-lead {
    margin: 0 0 16px;
    color: var(--landing-copy);
    font-size: 17px;
    line-height: 1.4;
}

.landing-benefits {
    margin: 0;
    padding: 0;
    gap: 9px;
    list-style: none;
    color: var(--landing-copy);
    font-size: 15px;
}

.landing-benefits li::before {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    place-items: center;
    border-radius: 50%;
    content: "✓";
    color: #061328;
    background: var(--landing-lime);
    font-size: 13px;
    font-weight: 900;
}

.landing-mobile-note {
    display: none;
}

.shortener-card,
.mobile-analytics-card {
    border: 1px solid rgba(219, 231, 247, .95);
    border-radius: 24px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 16px 50px rgba(51, 91, 138, .12);
}

.shortener-card {
    position: relative;
    z-index: 3;
    padding: 12px 20px 18px;
}

.shortener-tabs {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    margin: -12px -20px 14px;
}

.shortener-tab {
    display: flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 8px;
    border: 0;
    color: #5a7097;
    background: rgba(244, 248, 255, .7);
    font-size: 13px;
    text-decoration: none;
}

.shortener-tab:first-child {
    border-radius: 24px 0 0;
}

.shortener-tab:last-child {
    border-radius: 0 24px 0 0;
}

.shortener-tab.active {
    color: var(--landing-ink);
    background: #fff;
    font-weight: 800;
}

.shortener-tab svg,
.result-action svg,
.feature-icon svg,
.today-icon svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-shortener-form {
    display: grid;
    gap: 10px;
}

.landing-input-wrap {
    margin: 0;
}

.landing-url-input {
    height: 49px;
    padding: 0 16px;
    border: 1px solid #c8daf4;
    border-radius: 15px;
    color: var(--landing-copy);
    background: rgba(255, 255, 255, .8);
    font-size: 14px;
    box-shadow: none !important;
}

.landing-url-input:focus {
    border-color: var(--landing-blue);
}

.landing-submit {
    display: flex;
    height: 51px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 0;
    border-radius: 15px;
    color: #071122;
    background: linear-gradient(105deg, #9df700, #b7ff13);
    font-size: 19px;
    font-weight: 900;
    box-shadow: none;
}

.landing-submit span:last-child {
    font-size: 30px;
    line-height: 1;
}

.landing-submit:hover,
.landing-submit:focus {
    color: #071122;
    background: #8ee800;
}

.shortener-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 12px;
    margin-top: 15px;
}

.shortener-result-main,
.result-qr {
    border-radius: 15px;
    background: linear-gradient(115deg, #f3f7fc, #fff);
}

.shortener-result-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px 0;
}

.result-caption {
    color: #657b9d;
    font-size: 13px;
}

.result-link-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    margin: 2px 0 14px;
}

.result-link-row a {
    overflow: hidden;
    color: #0871f5;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-link-button {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    color: var(--landing-ink);
    background: transparent;
}

.copy-link-button svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.copy-link-button.is-copied,
.result-action.is-copied {
    color: #38af00;
}

.result-actions {
    gap: 8px;
    margin: auto -18px 0;
}

.result-action {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 6px;
    border: 0;
    border-radius: 12px;
    color: #223e6d;
    background: #f4f8fe;
    font-size: 11px;
    text-decoration: none;
}

.result-action:hover {
    color: var(--landing-blue);
}

.result-action svg {
    width: 17px;
    height: 17px;
}

.result-qr {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    border: 1px solid #dbe6f7;
}

.result-qr img {
    display: block;
    width: 100%;
    max-width: 102px;
    aspect-ratio: 1;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.result-qr span {
    color: #3d557d;
    font-size: 11px;
}

.landing-tool-note,
.showcase-note,
.landing-growth-note {
    color: #050914;
    font-family: "Comic Sans MS", cursive;
    font-weight: 800;
    font-style: italic;
    line-height: 1.15;
    transform: rotate(-5deg);
}

.landing-tool-note {
    position: relative;
    width: max-content;
    margin: 6px 0 0 188px;
    font-size: 17px;
    text-align: center;
	top: 10px;
}

.landing-tool-note span {
    position: relative;
    z-index: 1;
    display: block;
}

.landing-tool-arrow,
.landing-tool-rays,
.showcase-arrow {
    position: absolute;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-tool-arrow {
    top: -18px;
    left: -82px;
    width: 73px;
    height: 53px;
    transform: rotate(7deg);
}

.landing-tool-rays {
    top: 10px;
    right: -56px;
    width: 44px;
    height: 48px;
    color: var(--landing-lime);
    stroke-width: 5;
}

.landing-showcase {
    position: relative;
    min-height: 460px;
}

.phone-shell {
    position: absolute;
    top: 55px;
    left: 17%;
    width: 250px;
    height: 440px;
    padding: 13px;
    overflow: hidden;
    border: 7px solid #111;
    border-radius: 46px;
    background: #111;
    box-shadow: 0 22px 45px rgba(4, 18, 36, .2);
    transform: rotate(8deg);
}

.phone-notch {
    position: absolute;
    z-index: 2;
    top: 5px;
    left: 50%;
    width: 95px;
    height: 20px;
    border-radius: 0 0 13px 13px;
    background: #111;
    transform: translateX(-50%);
}

.phone-screen {
    height: 100%;
    padding: 27px 16px;
    border-radius: 31px;
    background: linear-gradient(150deg, #fff, #f4f8ff);
}

.phone-logo {
    margin-bottom: 20px;
    font-family: Arial Black, Arial, sans-serif;
    font-size: 18px;
    font-style: italic;
}

.phone-logo span {
    color: var(--landing-lime);
}

.phone-section-title {
    font-size: 15px;
    font-weight: 800;
}

.phone-number {
    margin-top: 5px;
    font-size: 29px;
    font-weight: 900;
}

.phone-number small {
    padding: 5px 7px;
    border-radius: 7px;
    color: #0bad2a;
    background: #dfffe6;
    font-size: 11px;
}

.phone-muted {
    display: block;
    color: #72819e;
    font-size: 11px;
}

.phone-chart {
    width: 100%;
    height: 95px;
    margin: 10px 0 15px;
}

.chart-area {
    fill: url(#phoneChartFill);
}

.chart-line {
    fill: none;
    stroke: #58de00;
    stroke-width: 3;
}

.phone-sources {
    display: grid;
    gap: 7px;
    font-size: 10px;
}

.phone-sources strong {
    margin-bottom: 4px;
    font-size: 12px;
}

.phone-sources span {
    display: flex;
    justify-content: space-between;
}

.today-card {
    position: absolute;
    z-index: 4;
    top: 210px;
    right: -15px;
    display: grid;
    grid-template-columns: 42px 1fr;
    width: 190px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 38px rgba(41, 73, 111, .16);
    transform: rotate(7deg);
}

.today-icon {
    display: grid;
    grid-row: span 2;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    color: #20c915;
    background: #f2f8ff;
}

.today-card small {
    font-size: 9px;
}

.today-card strong {
    font-size: 20px;
}

.today-card em {
    padding: 4px;
    border-radius: 6px;
    color: #0aae22;
    background: #dcffe3;
    font-size: 9px;
    font-style: normal;
}

.showcase-note {
    position: absolute;
    z-index: 5;
    font-size: 17px;
}

.showcase-note.top {
    top: 0;
    left: 0;
}

.showcase-note .line4{
	transform: rotate(22deg);
    width: 30px;
    position: absolute;
    right: -60px;
}

.showcase-arrow-top {
    top: 54px;
    left: 13px;
    width: 58px;
    height: 70px;
}

.showcase-note.bottom {
    right: -18px;
    bottom: 50px;
    min-width: 126px;
    padding: 10px 12px 9px;
    border: 1px solid rgba(220, 231, 248, .8);
    border-radius: 15px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 28px rgba(35, 66, 105, .09);
    backdrop-filter: blur(7px);
    text-align: center;
    transform: rotate(4deg);
}

.showcase-note.bottom span {
    position: relative;
    z-index: 1;
    display: block;
}

.showcase-arrow-bottom {
    top: -62px;
    left: 47px;
    width: 56px;
    height: 69px;
}

.landing-features {
    position: relative;
    z-index: 5;
    padding: 18px 0 16px;
}

.landing-feature-card {
    display: flex;
    min-height: 100px;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding: 13px 22px;
    border: 1px solid var(--landing-line);
    border-radius: 16px;
    color: var(--landing-ink);
    background: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.landing-feature-card:hover {
    color: var(--landing-ink);
    border-color: #bbcff0;
    box-shadow: 0 12px 30px rgba(46, 82, 125, .1);
    transform: translateY(-2px);
}

.feature-icon {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    place-items: center;
    border-radius: 16px;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2.2;
}

.tone-blue { color: #0967ed; background: linear-gradient(140deg, #edf5ff, #dbeaff); }
.tone-green { color: #19a438; background: linear-gradient(140deg, #f0ffe8, #def8d4); }
.tone-violet { color: #5137e9; background: linear-gradient(140deg, #f0edff, #e5e0ff); }
.tone-pink { color: #db1794; background: linear-gradient(140deg, #fff1fb, #fae2f3); }
.tone-yellow { color: #e5a700; background: linear-gradient(140deg, #fff9e8, #fff0c5); }

.feature-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.feature-copy strong {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.15;
}

.feature-copy small {
    color: #5f76a0;
    font-size: 14px;
    line-height: 1.25;
}

.feature-arrow {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border: 1px solid #dbe6f6;
    border-radius: 50%;
    color: #37547c;
    font-size: 25px;
}

.landing-about-card {
    display: grid;
    grid-template-columns: 42% 1fr 175px;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 17px;
    background: rgba(255, 255, 255, .82);
}

.landing-about-card h2 {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 24px 28px;
    border-right: 1px solid var(--landing-line);
    color: var(--landing-ink);
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.12;
}

.landing-about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 28px;
}

.landing-about-copy p {
    margin: 0 0 12px;
    color: #50698f;
    font-size: 14px;
    line-height: 1.4;
}

.landing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-tags span {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 20px;
    color: #385985;
    background: #f2f6fc;
    font-size: 11px;
}

.landing-growth-note {
    position: relative;
    align-self: center;
    font-size: 17px;
    text-align: center;
}

.landing-growth-img {
    position: absolute;
    top: -50px;
    left: 30px;
    transform: rotate(240deg);
}

.landing-growth-note::after {
    position: absolute;
    right: 40px;
    bottom: -26px;
    width: 62px;
    height: 18px;
    border-bottom: 4px solid var(--landing-lime);
    border-radius: 0 0 70% 50%;
    content: "";
    transform: rotate(354deg);
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .landing-container { width: calc(100% - 32px); max-width: 1140px; }
    .landing-start { min-width: 190px; }
    .landing-title { font-size: 55px; }
    .shortener-card { padding-inline: 14px; }
    .shortener-tabs { margin-inline: -14px; }
    .phone-shell { left: 4%; width: 220px; }
    .today-card { right: -8px; width: 165px; }
    .landing-feature-card { gap: 12px; padding: 12px; }
    .feature-icon { width: 54px; height: 54px; flex-basis: 54px; }
    .feature-arrow { width: 36px; height: 36px; flex-basis: 36px; }
}

@media (min-width: 992px) {
    .landing-order-1 { order: 1; }
    .landing-order-2 { order: 2; }
    .landing-order-3 { order: 3; }
    .landing-order-4 { order: 4; }
    .landing-order-5 { order: 5; }
    .landing-order-6 { order: 6; }
}

@media (max-width: 991.98px) {
    .landing-container {
        width: calc(100% - 28px);
        max-width: 720px;
    }

    .landing-header .navbar {
        padding-top: 24px !important;
        padding-bottom: 18px !important;
    }

    .landing-logo {
        font-size: 34px;
    }

    .landing-header .navbar-collapse {
        position: absolute;
        top: 76px;
        right: 14px;
        left: 14px;
        padding: 18px;
        border: 1px solid var(--landing-line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 45px rgba(36, 70, 111, .16);
    }

    .landing-nav {
        gap: 3px;
    }

    .landing-auth {
        display: grid;
        gap: 12px;
        margin-top: 12px;
    }

    .landing-login {
        padding: 8px;
    }

    .landing-start {
        width: 100%;
    }

    .landing-page {
        background:
            radial-gradient(circle at 90% 17%, rgba(210, 238, 255, .75), transparent 26%),
            radial-gradient(circle at 5% 48%, rgba(221, 245, 255, .58), transparent 30%),
            #fff;
    }

    .landing-hero {
        padding: 12px 0 8px;
    }

    .landing-hero-row {
        min-height: 0;
    }

    .landing-title {
        width: min-content;
        margin: 0 0 18px 8px;
        font-size: clamp(47px, 13vw, 72px);
        letter-spacing: -4px;
    }

    .landing-title-wrap::before {
        left: -25px;
        bottom: -17px;
        transform: rotate(2deg) scale(.75);
    }

    .landing-title-wrap::after {
        right: auto;
        bottom: 51px;
        transform: rotate(199deg) scale(.75);
		left: 310px;
    }

    .landing-title span {
        margin-left: 14px;
        padding: 5px 12px 8px 8px;
        border-radius: 13px;
    }

    .landing-mobile-note {
        position: absolute;
        right: 6%;
        bottom: 52%;
        display: block;
        font-family: "Comic Sans MS", cursive;
        font-size: clamp(15px, 4vw, 23px);
        font-weight: 700;
        font-style: italic;
        line-height: 1.18;
        transform: rotate(-7deg);
    }

    .landing-mobile-arrow {
        position: absolute;
		transform: rotate(304deg);
		left: -40px;
		bottom: -50px;
		width: 70px;
    }

    .landing-lead {
        margin: 0 8px 2px;
        font-size: clamp(17px, 4.6vw, 23px);
        line-height: 1.27;
    }

    .shortener-card {
        margin-top: 0;
        padding: 10px 14px 14px;
        border-radius: 20px;
    }

    .shortener-tabs {
        gap: 7px;
        margin: 0 0 12px;
    }

    .shortener-tab,
    .shortener-tab:first-child,
    .shortener-tab:last-child {
        min-height: 53px;
        padding: 7px 6px;
        border-radius: 13px;
        background: #f3f7fd;
        font-size: 14px;
        font-weight: 800;
    }

    .shortener-tab.active {
        background: linear-gradient(110deg, #efffd6, #f7ffe9);
    }

    .shortener-tab svg {
        width: 24px;
        height: 24px;
        color: var(--landing-blue);
    }

    .shortener-tab.active svg {
        color: var(--landing-ink);
    }

    .landing-url-input {
        height: 55px;
        border-radius: 14px;
        font-size: 16px;
    }

    .landing-submit {
        height: 55px;
        border-radius: 14px;
        font-size: 20px;
    }

    .shortener-result {
        grid-template-columns: minmax(0, 1fr) 138px;
        gap: 12px;
        margin-top: 14px;
    }

    .shortener-result-main {
        min-height: 154px;
        padding: 17px;
    }

    .result-caption {
        font-size: 15px;
    }

    .result-link-row {
        margin: 8px 0 0;
    }

    .result-link-row a {
        font-size: clamp(19px, 5vw, 28px);
    }

    .result-qr img {
        max-width: 115px;
    }

    .result-qr span {
        font-size: 12px;
    }

    .mobile-analytics-card {
        margin-top: 10px;
        padding: 18px 20px 13px;
    }

    .mobile-analytics-head {
        display: grid;
        grid-template-columns: 62px 1fr auto;
        align-items: start;
        gap: 12px;
    }

    .mobile-analytics-head .feature-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .mobile-analytics-head strong {
        display: block;
        font-size: 18px;
    }

    .mobile-stat {
        color: var(--landing-ink);
        font-size: 34px;
        font-weight: 900;
        line-height: 1.1;
    }

    .mobile-stat small {
        display: inline-block;
        padding: 7px 10px;
        border-radius: 12px;
        color: #12ad27;
        background: #dfffe5;
        font-size: 16px;
        vertical-align: middle;
    }

    .mobile-analytics-head div > span {
        color: #526c96;
        font-size: 15px;
    }

    .mobile-analytics-head .btn {
        padding: 8px 12px;
        border: 1px solid #d7e4f5;
        border-radius: 12px;
        color: var(--landing-ink);
        font-size: 16px;
    }

    .mobile-analytics-card > svg {
        width: 100%;
        height: 130px;
    }

    .mobile-analytics-card .chart-area {
        fill: url(#mobileChartFill);
    }

    .mobile-analytics-card .chart-line {
        stroke-width: 4;
    }

    .chart-points circle {
        fill: #fff;
        stroke: #58de00;
        stroke-width: 4;
    }

    .chart-dates {
        display: flex;
        justify-content: space-between;
        color: #65799a;
        font-size: 12px;
    }

    .landing-features {
        padding: 14px 0;
    }

    .landing-feature-card {
        min-height: 112px;
        gap: 10px;
        padding: 14px;
        border-radius: 17px;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-radius: 14px;
    }

    .feature-icon svg {
        width: 31px;
        height: 31px;
    }

    .feature-copy strong {
        font-size: 16px;
    }

    .feature-copy small {
        font-size: 13px;
    }

    .feature-arrow {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 21px;
    }

    .landing-about-card {
        display: block;
        min-height: 0;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .landing-about-card h2 {
        position: relative;
        padding: 0;
        border: 0;
        font-size: clamp(25px, 7vw, 36px);
        line-height: 1.08;
    }

    .landing-about-card h2::after {
        position: absolute;
        top: 7px;
        right: 7%;
        width: 42px;
        height: 37px;
        content: "";
        background:
            linear-gradient(var(--landing-lime), var(--landing-lime)) 1px 25px / 18px 4px no-repeat,
            linear-gradient(var(--landing-lime), var(--landing-lime)) 14px 13px / 16px 4px no-repeat,
            linear-gradient(var(--landing-lime), var(--landing-lime)) 25px 2px / 4px 18px no-repeat;
        transform: rotate(20deg);
    }

    .landing-about-copy {
        padding: 12px 0 0;
    }

    .landing-about-copy p {
        color: #263f69;
        font-size: clamp(15px, 4vw, 20px);
        line-height: 1.35;
    }

    .landing-tags {
        flex-wrap: nowrap;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 3px;
        scrollbar-width: none;
    }

    .landing-tags::-webkit-scrollbar {
        display: none;
    }

    .landing-tags span {
        flex: 0 0 auto;
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .landing-container {
        width: calc(100% - 24px);
    }

    .landing-title {
        font-size: clamp(43px, 14.5vw, 62px);
    }
	.landing-title-wrap::after {
		left: 270px;
		bottom: 41px;
    }
	
	.landing-mobile-note {
        right: -3%;
    }

    .landing-mobile-note {
        /*display:none;*/
    }

    .shortener-tabs {
        grid-template-columns: 1.35fr .9fr 1fr;
    }

    .shortener-tab {
        gap: 5px;
        font-size: 12px !important;
    }

    .shortener-tab svg {
        width: 21px;
        height: 21px;
    }

    .shortener-result {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 8px;
    }

    .shortener-result-main {
        min-height: 132px;
        padding: 12px;
    }

    .result-caption {
        font-size: 12px;
    }

    .result-link-row a {
        font-size: 18px;
    }

    .copy-link-button,
    .copy-link-button svg {
        width: 23px;
        height: 23px;
    }

    .result-qr {
        padding: 6px;
    }

    .mobile-analytics-card {
        padding: 14px;
    }

    .mobile-analytics-head {
        grid-template-columns: 50px 1fr auto;
        gap: 8px;
    }

    .mobile-analytics-head .feature-icon {
        width: 46px;
        height: 46px;
    }

    .mobile-stat {
        font-size: 28px;
    }

    .mobile-stat small {
        padding: 5px 7px;
        font-size: 13px;
    }

    .mobile-analytics-head .btn {
        padding: 7px 8px;
        font-size: 13px;
    }

    .mobile-analytics-card > svg {
        height: 105px;
    }

    .landing-feature-card {
        min-height: 122px;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 7px;
        padding: 12px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .feature-icon svg {
        width: 27px;
        height: 27px;
    }

    .feature-copy {
        min-width: calc(100% - 56px);
    }

    .feature-copy strong {
        font-size: 14px;
    }

    .feature-copy small {
        font-size: 12px;
    }

    .feature-arrow {
        display: none;
    }
}

@media (max-width: 540px) {
   
    .landing-mobile-note {
        display:none;
    }
}

@media (max-width: 425px) {
   
    .landing-title-wrap::after {
        left: 60vw;
    }
}


@media (prefers-reduced-motion: reduce) {
    .landing-feature-card {
        transition: none;
    }
}

/* Shared public pages */
.landing-logout-form {
    margin: 0;
}

.public-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #567096;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.public-eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-lime);
    content: "";
}

.public-auth-page {
    display: flex;
    min-height: calc(100vh - 150px);
    align-items: center;
    padding: 54px 0 68px;
    background:
        radial-gradient(circle at 14% 18%, rgba(174, 252, 0, .13), transparent 24%),
        radial-gradient(circle at 87% 22%, rgba(189, 229, 255, .58), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.public-auth-shell {
    max-width: 1110px;
    overflow: hidden;
    border: 1px solid #dbe7f7;
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 80px rgba(30, 67, 110, .14);
}

.public-auth-promo {
    position: relative;
    display: flex;
    min-height: 590px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 54px 46px 42px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(168, 250, 0, .25), transparent 29%),
        linear-gradient(145deg, #020c27 0%, #05234c 100%);
}

.public-auth-promo::before,
.public-auth-promo::after {
    position: absolute;
    border: 1px solid rgba(168, 250, 0, .3);
    border-radius: 50%;
    content: "";
}

.public-auth-promo::before {
    right: -125px;
    bottom: -145px;
    width: 330px;
    height: 330px;
}

.public-auth-promo::after {
    right: -72px;
    bottom: -92px;
    width: 225px;
    height: 225px;
}

.public-auth-promo > * {
    position: relative;
    z-index: 1;
}

.public-auth-promo .public-eyebrow {
    color: #c5d4eb;
}

.public-auth-promo h1 {
    margin: 25px 0 20px;
    color: #fff;
    background: none;
    font-family: Arial Black, Arial, sans-serif;
    font-size: clamp(36px, 3.2vw, 53px);
    font-weight: 950;
    font-style: italic;
    letter-spacing: -3px;
    line-height: .98;
    transform: skew(-3deg);
}

.public-auth-promo h1 span {
    display: inline-block;
    margin-top: 9px;
    padding: 5px 9px 8px;
    border-radius: 10px;
    color: #071329;
    background: var(--landing-lime);
    transform: skew(3deg) rotate(-1deg);
}

.public-auth-promo p {
    max-width: 360px;
    margin: 0;
    color: #c5d4eb;
    font-size: 17px;
    line-height: 1.5;
}

.auth-promo-demo {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 14px;
    align-items: center;
    margin: 46px 0 22px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 17px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.auth-promo-demo small {
    grid-column: 1;
    color: #b9cae3;
    font-size: 12px;
}

.auth-promo-demo strong {
    grid-column: 1;
    color: #fff;
    font-size: 22px;
}

.auth-promo-demo > span {
    grid-column: 2;
    grid-row: 1 / 3;
    color: var(--landing-lime);
    font-size: 32px;
}

.auth-promo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-promo-points span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    color: #c7d6ea;
    background: rgba(255, 255, 255, .07);
    font-size: 11px;
}

.signup-benefits {
    display: grid;
    margin: 35px 0 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 15px;
    background: rgba(255, 255, 255, .07);
}

.signup-benefits svg {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    fill: none;
    stroke: var(--landing-lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signup-benefits strong,
.signup-benefits small {
    display: block;
}

.signup-benefits strong {
    color: #fff;
    font-size: 14px;
}

.signup-benefits small {
    margin-top: 2px;
    color: #afc1da;
    font-size: 11px;
}

.public-auth-form-panel {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    justify-content: center;
    padding: 55px clamp(34px, 5vw, 78px) 42px;
}

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

.auth-form-heading h2 {
    margin: 12px 0 8px;
    color: var(--landing-ink);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -1.4px;
}

.auth-form-heading p {
    margin: 0;
    color: #657b9d;
    font-size: 15px;
}

.public-auth-form {
    display: grid;
    gap: 18px;
}

.public-field {
    margin: 0;
}

.public-field .form-label {
    margin-bottom: 8px;
    color: #152746;
    font-size: 13px;
    font-weight: 800;
}

.public-input-group {
    flex-wrap: nowrap;
}

.public-input-group .input-group-text {
    width: 53px;
    justify-content: center;
    padding: 0;
    border: 1px solid #ccdaf0;
    border-right: 0;
    border-radius: 14px 0 0 14px;
    color: #146cea;
    background: #f5f8fd;
}

.public-input-group .input-group-text svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-input-group .form-control {
    min-height: 55px;
    border: 1px solid #ccdaf0;
    border-left: 0;
    border-radius: 0 14px 14px 0 !important;
    color: #142541;
    background: #fff;
    font-size: 15px;
    box-shadow: none;
}

.public-input-group:focus-within .input-group-text,
.public-input-group:focus-within .form-control {
    border-color: #5e9df2;
}

.public-input-group:focus-within .input-group-text {
    color: #064fae;
    background: #eef6ff;
}

.public-field .invalid-feedback {
    margin-top: 6px;
    font-size: 12px;
}

.auth-form-options .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
    margin: 0;
}

.auth-form-options .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    border-color: #b9cae2;
    box-shadow: none;
}

.auth-form-options .form-check-input:checked {
    border-color: #76c900;
    background-color: #76c900;
}

.auth-form-options .form-check-label {
    color: #526b91;
    font-size: 13px;
}

.public-primary-btn {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 0;
    border-radius: 14px;
    color: #061226;
    background: linear-gradient(105deg, #9df700, #b7ff13);
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(142, 224, 0, .2);
}

.public-primary-btn:hover,
.public-primary-btn:focus {
    color: #061226;
    background: #91ea00;
    box-shadow: 0 14px 34px rgba(116, 190, 0, .28);
}

.public-primary-btn span {
    font-size: 26px;
    line-height: 1;
}

.auth-switch {
    margin: 25px 0 0;
    color: #657b9d;
    font-size: 13px;
    text-align: center;
}

.auth-switch a,
.auth-legal-note a {
    color: #0869e9;
    font-weight: 800;
    text-decoration: none;
}

.auth-switch a:hover,
.auth-legal-note a:hover {
    text-decoration: underline;
}

.auth-legal-note {
    margin: -2px 0 0;
    color: #7185a3;
    font-size: 12px;
    line-height: 1.45;
}

/* Public offer */
.public-legal-page {
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 86% 5%, rgba(203, 236, 255, .72), transparent 20%),
        #f8fbff;
}

.public-legal-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 92px;
    background: #fff;
}

.public-legal-hero::after {
    position: absolute;
    right: -80px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 55px solid rgba(168, 250, 0, .25);
    border-radius: 50%;
    content: "";
}

.public-legal-hero .landing-container {
    position: relative;
    z-index: 1;
}

.public-legal-hero h1 {
    max-width: 850px;
    margin: 15px 0 12px;
    color: var(--landing-ink);
    background: none;
    font-family: Arial Black, Arial, sans-serif;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 950;
    font-style: italic;
    letter-spacing: -4px;
    line-height: .98;
}

.public-legal-hero > .landing-container > p {
    max-width: 710px;
    margin: 0;
    color: #3d5b87;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45;
}

.legal-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.legal-hero-meta span {
    padding: 8px 13px;
    border: 1px solid #dce8f8;
    border-radius: 20px;
    color: #49678f;
    background: #f5f8fd;
    font-size: 12px;
}

.public-legal-layout {
    position: relative;
    z-index: 2;
    margin-top: -38px;
}

.legal-summary-card,
.public-legal-card {
    border: 1px solid #dbe7f7;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 55px rgba(42, 79, 122, .09);
}

.legal-summary-card {
    position: sticky;
    top: 24px;
    padding: 24px;
    border-radius: 22px;
}

.legal-summary-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 14px;
    color: #07152c;
    background: var(--landing-lime);
    font-size: 27px;
    font-weight: 900;
}

.legal-summary-card h2 {
    margin: 0 0 10px;
    color: var(--landing-ink);
    font-size: 21px;
    font-weight: 900;
}

.legal-summary-card > p {
    margin: 0 0 20px;
    color: #617898;
    font-size: 13px;
    line-height: 1.55;
}

.legal-summary-card dl {
    display: grid;
    margin: 0 0 22px;
    gap: 13px;
}

.legal-summary-card dl > div {
    padding-top: 12px;
    border-top: 1px solid #e5edf8;
}

.legal-summary-card dt {
    color: #8798b2;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-summary-card dd {
    margin: 3px 0 0;
    color: #193052;
    font-size: 13px;
    font-weight: 800;
}

.legal-summary-card dd a {
    color: #0869e9;
    text-decoration: none;
}

.legal-summary-card .public-primary-btn {
    min-height: 47px;
    font-size: 13px;
}

.public-legal-card {
    padding: clamp(28px, 5vw, 68px);
    border-radius: 26px;
    color: #344f76;
    font-size: 15px;
    line-height: 1.72;
}

.public-legal-card .legal-document-title {
    margin: 0 0 9px;
    color: var(--landing-ink);
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
}

.public-legal-card h2:not(.legal-document-title) {
    margin: 42px 0 15px;
    padding-top: 23px;
    border-top: 1px solid #e1eaf6;
    color: var(--landing-ink);
    font-size: clamp(20px, 2.3vw, 27px);
    font-weight: 900;
    letter-spacing: -.4px;
}

.public-legal-card p {
    margin: 0 0 14px;
}

.public-legal-card > p:nth-of-type(1) {
    display: inline-block;
    margin-bottom: 28px;
    padding: 7px 11px;
    border-radius: 10px;
    color: #567096;
    background: #f2f6fc;
    font-size: 12px;
}

.public-legal-card ul,
.public-legal-card ol {
    margin: 12px 0 20px;
    padding-left: 22px;
}

.public-legal-card li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.public-legal-card li::marker {
    color: #77c800;
    font-weight: 900;
}

.public-legal-card li p {
    margin: 0;
}

.public-legal-card strong {
    color: #142a4b;
}

.public-legal-card hr {
    margin: 35px 0;
    border-color: #dce7f4;
    opacity: 1;
}

.landing-body #footer {
    color: #587095;
}

.landing-body #footer a {
    color: #173b6a;
    font-weight: 700;
    text-decoration: none;
}

.landing-body #footer a:hover {
    color: var(--landing-blue);
}

/* Public messages and standalone pages */
.public-message-page {
    display: grid;
    min-height: calc(100vh - 170px);
    align-items: center;
    padding: 64px 0 80px;
    background:
        radial-gradient(circle at 10% 20%, rgba(168, 250, 0, .16), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(167, 216, 255, .44), transparent 27%),
        #f8fbff;
}

.public-message-card {
    position: relative;
    max-width: 820px;
    overflow: hidden;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 76px) 24px;
    border: 1px solid #dbe7f7;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 26px 75px rgba(30, 67, 110, .12);
    text-align: center;
}

.public-message-card::before {
    position: absolute;
    top: -115px;
    right: -105px;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(168, 250, 0, .24);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.public-message-card > * {
    position: relative;
}

.public-message-code {
    margin: 18px 0 12px;
    color: var(--landing-ink);
    font-family: Arial Black, Arial, sans-serif;
    font-size: clamp(96px, 20vw, 180px);
    font-weight: 950;
    font-style: italic;
    letter-spacing: -.09em;
    line-height: .9;
    transform: skew(-5deg);
}

.public-message-card h1 {
    margin: 0 0 14px;
    color: var(--landing-ink);
    font-size: clamp(29px, 5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.public-message-card p {
    max-width: 540px;
    margin: 0 auto;
    color: #526b91;
    font-size: 16px;
    line-height: 1.55;
}

.public-message-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.public-message-actions .btn {
    min-width: 186px;
}

.public-secondary-btn {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    padding: 12px 23px;
    border: 1px solid #c9d9ed;
    border-radius: 14px;
    color: var(--landing-ink);
    background: #f6f9fd;
    font-weight: 800;
}

.public-secondary-btn:hover,
.public-secondary-btn:focus {
    border-color: var(--landing-blue);
    color: var(--landing-blue);
    background: #eef5ff;
}

.public-password-card {
    max-width: 560px;
    text-align: left;
}

.public-password-card p {
    margin: 0;
}

.public-password-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.public-password-form .form-control {
    min-height: 54px;
    border: 1px solid #ccdaf0;
    border-radius: 14px;
    box-shadow: none;
}

.public-password-form .form-control:focus {
    border-color: var(--landing-blue);
}

@media (max-width: 575.98px) {
    .public-message-page {
        padding: 32px 0 48px;
    }

    .public-message-card {
        border-radius: 20px;
    }

    .public-message-actions {
        display: grid;
    }

    .public-message-actions .btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .public-auth-page {
        min-height: 0;
        padding: 22px 0 48px;
    }

    .public-auth-shell {
        max-width: 720px;
        border-radius: 24px;
    }

    .public-auth-promo {
        min-height: 0;
        padding: 34px;
    }

    .public-auth-promo h1 {
        max-width: 580px;
        margin: 18px 0 13px;
        font-size: clamp(35px, 7vw, 51px);
    }

    .public-auth-promo p {
        max-width: 570px;
    }

    .auth-promo-demo {
        max-width: 500px;
        margin: 28px 0 18px;
    }

    .signup-benefits {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 27px;
    }

    .signup-benefits li {
        align-items: flex-start;
    }

    .public-auth-form-panel {
        min-height: 0;
        padding: 42px 34px 34px;
    }

    .legal-summary-card {
        position: static;
    }

    .legal-summary-card dl {
        grid-template-columns: repeat(2, 1fr);
    }

    .public-legal-hero {
        padding: 45px 0 75px;
    }
}

@media (max-width: 575.98px) {
    .public-auth-page {
        padding-top: 8px;
    }

    .public-auth-shell {
        border-radius: 20px;
    }

    .public-auth-promo {
        padding: 27px 22px 25px;
    }

    .public-auth-promo h1 {
        font-size: 34px;
        letter-spacing: -2.4px;
    }

    .public-auth-promo p {
        font-size: 14px;
    }

    .auth-promo-demo,
    .auth-promo-points {
        display: none;
    }

    .signup-benefits {
        display: none;
    }

    .public-auth-form-panel {
        padding: 31px 20px 27px;
    }

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

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

    .public-auth-form {
        gap: 15px;
    }

    .public-legal-page {
        padding-bottom: 35px;
    }

    .public-legal-hero {
        padding: 30px 0 66px;
    }

    .public-legal-hero::after {
        right: -130px;
        bottom: -175px;
    }

    .public-legal-hero h1 {
        font-size: 43px;
        letter-spacing: -3px;
    }

    .public-legal-hero > .landing-container > p {
        font-size: 16px;
    }

    .public-legal-layout {
        margin-top: -34px;
    }

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

    .public-legal-card {
        padding: 24px 19px;
        border-radius: 19px;
        font-size: 14px;
        line-height: 1.65;
    }

    .public-legal-card h2:not(.legal-document-title) {
        margin-top: 34px;
    }
}
