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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background-color: #f6f8f7;
    color: #17211c;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
}

.nav-container {
    width: min(92%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.nav-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.brand-subtitle {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.68);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-login {
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-login:hover {
    background-color: #ffffff;
    color: #07552d !important;
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 20, 0.97) 0%,
            rgba(5, 35, 20, 0.89) 40%,
            rgba(5, 35, 20, 0.58) 68%,
            rgba(5, 35, 20, 0.35) 100%
        ),
        url("background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 75% 45%,
        rgba(0, 150, 57, 0.16),
        transparent 32%
    );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(92%, 1280px);
    margin: 0 auto;
    padding: 150px 0 110px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
}

.hero-content {
    max-width: 720px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #7ee2a3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.label-line {
    display: block;
    width: 34px;
    height: 2px;
    background-color: #20c76b;
}

.hero-title {
    max-width: 700px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero-title span {
    display: block;
    color: #4fdb88;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn {
    min-height: 52px;
    padding: 0 26px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #009639;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 150, 57, 0.28);
}

.btn-primary:hover {
    background-color: #00aa45;
    box-shadow: 0 16px 35px rgba(0, 150, 57, 0.38);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.btn-primary:hover .button-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

.hero-school-info {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.school-line {
    width: 38px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
}

.hero-school-info p {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.6;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-card {
    position: relative;
    width: min(100%, 400px);
    padding: 48px 38px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.logo-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(0, 180, 75, 0.25);
    filter: blur(45px);
}

.hero-logo {
    position: relative;
    width: clamp(110px, 12vw, 155px);
    height: auto;
    margin-bottom: 18px;
    object-fit: contain;
}

.logo-card h2 {
    position: relative;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.logo-card > p {
    position: relative;
    max-width: 250px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

.system-features {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-feature {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: left;
    background: rgba(0, 0, 0, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 205, 105, 0.16);
    color: #51e08b;
    font-weight: 800;
}

.scroll-indicator {
    position: absolute;
    z-index: 5;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.scroll-arrow {
    font-size: 17px;
    animation: scrollBounce 1.8s infinite;
}

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

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

.section-container {
    width: min(90%, 1180px);
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #00843d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.features-section {
    padding: 110px 0;
    background: #f7f9f8;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading h2 span {
    color: #00843d;
}

.section-heading p {
    color: #6c7771;
    font-size: 15px;
    line-height: 1.8;
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(240px, 1fr)
        );

    gap: 22px;
}

.feature-card {
    position: relative;
    min-height: 300px;
    padding: 32px;
    border: 1px solid #e4e9e6;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(16, 32, 24, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 132, 61, 0.28);
    box-shadow: 0 18px 45px rgba(16, 32, 24, 0.09);
}

.feature-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #c7d0cb;
    font-size: 13px;
    font-weight: 700;
}

.feature-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf8f2;
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
}

.feature-card p {
    color: #68736d;
    font-size: 14px;
    line-height: 1.75;
}

.about-preview {
    padding: 110px 0;
    background: #ffffff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.about-content h2 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -1.3px;
}

.about-content p {
    max-width: 620px;
    margin-bottom: 27px;
    color: #68736d;
    line-height: 1.85;
    font-size: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00843d;
    font-size: 14px;
    font-weight: 700;
}

.text-link span {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.workflow-card {
    padding: 35px;
    border: 1px solid #e3e8e5;
    border-radius: 22px;
    background: #f7f9f8;
    box-shadow: 0 18px 50px rgba(16, 32, 24, 0.05);
}

.workflow-title {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1e6e3;
    font-size: 14px;
    font-weight: 700;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.workflow-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00843d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.workflow-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.workflow-item strong {
    font-size: 14px;
}

.workflow-item small {
    color: #7a857f;
    font-size: 12px;
}

.workflow-line {
    width: 1px;
    height: 24px;
    margin: 4px 0 4px 20px;
    background: #d6ded9;
}

.cta-section {
    padding: 80px 0;
    background: #073d24;
    color: #ffffff;
}

.cta-container {
    width: min(90%, 1180px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-section .section-label {
    color: #5ce494;
}

.cta-container h2 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-container p {
    color: rgba(255, 255, 255, 0.6);
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.cta-login {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.cta-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-register {
    color: #073d24;
    background: #ffffff;
}

.cta-register:hover {
    color: #073d24;
    background: #edf8f2;
}

.landing-footer {
    padding: 34px 0;
    background: #052c1a;
    color: rgba(255, 255, 255, 0.65);
}

.footer-container {
    width: min(90%, 1180px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-brand strong {
    color: #ffffff;
    font-size: 16px;
}

.footer-brand span {
    font-size: 10px;
}

.footer-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    text-align: right;
    font-size: 11px;
}

.ai-badge {
    width: fit-content;
    margin-bottom: 24px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(92, 228, 148, 0.25);
    border-radius: 999px;
    background: rgba(0, 150, 57, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.4;
}

.ai-badge strong {
    color: #6ce89e;
    font-weight: 700;
}

.ai-badge-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(92, 228, 148, 0.15);
    color: #6ce89e;
    font-size: 12px;
}

.technology-section {
    padding: 110px 0;
    background: #0a2f1e;
    color: #ffffff;
}

.technology-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: clamp(60px, 10vw, 130px);
}

.technology-section .section-label {
    color: #64df96;
}

.technology-content h2 {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.technology-content h2 span {
    color: #5ce494;
}

.technology-content p {
    max-width: 650px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.85;
}

.technology-content .text-link {
    margin-top: 8px;
    color: #69e39a;
}

.technology-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.technology-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.technology-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #009639;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.technology-small-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.technology-card h3 {
    font-size: 24px;
}

.technology-divider {
    height: 1px;
    margin: 27px 0;
    background: rgba(255, 255, 255, 0.1);
}

.technology-feature {
    display: flex;
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.technology-feature:last-child {
    border-bottom: none;
}

.technology-feature > span {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(92, 228, 148, 0.1);
    color: #62df94;
    font-size: 10px;
    font-weight: 700;
}

.technology-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
}

.technology-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .hero-container {
        grid-template-columns: 1fr 0.75fr;
        gap: 40px;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .logo-card {
        padding: 35px 25px;
    }


    .about-layout {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 17px 0;
    }

    .nav-container {
        width: 90%;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-subtitle {
        display: none;
    }

    .nav-links {
        gap: 12px;
    }


    .nav-login {
        padding: 9px 16px;
    }

    .hero-section {
        min-height: auto;
        background-position: center;
    }

    .hero-container {
        min-height: 100vh;
        padding: 125px 0 90px;
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-label {
        justify-content: center;
        margin-bottom: 19px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.1rem);
        letter-spacing: -2px;
    }

    .hero-description {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .button-group {
        justify-content: center;
    }

    .hero-school-info {
        justify-content: center;
    }

    .hero-school-info p {
        text-align: left;
    }

    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .features-section {
        padding: 80px 0;
    }

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

    .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card {
        min-height: auto;
    }

    .about-preview {
        padding: 80px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .technology-section {
        padding: 80px 0;
    }

    .technology-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .technology-card {
        padding: 26px;
    }

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

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-text {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .section-container,
    .cta-container,
    .footer-container {
        width: 88%;
    }

    .hero-container {
        width: 88%;
        padding-top: 115px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .button-group {
        width: 100%;
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }

    .hero-school-info {
        display: none;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 27px;
    }

    .workflow-card {
        padding: 25px 20px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .ai-badge {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .technology-section {
        padding: 80px 0;
    }

    .technology-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .technology-card {
        padding: 26px;
    }
}

/* =========================================================
   CUSTOM PASSWORD FIELD - REMOVE BROWSER ICONS
========================================================= */

.password-wrapper input,
.register-password-wrapper input,
.new-password-wrapper input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* =========================================================
   EDGE NATIVE PASSWORD EYE / CLEAR ICON
========================================================= */

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
.password-wrapper input::-ms-reveal,
.password-wrapper input::-ms-clear,
.register-password-wrapper input::-ms-reveal,
.register-password-wrapper input::-ms-clear,
.new-password-wrapper input::-ms-reveal,
.new-password-wrapper input::-ms-clear {
    display: none !important;

    width: 0 !important;
    height: 0 !important;
}


/* =========================================================
   CHROMIUM / EDGE AUTOFILL ICON
========================================================= */

input::-webkit-credentials-auto-fill-button,
input::-webkit-contacts-auto-fill-button {
    visibility: hidden !important;
    display: none !important;

    pointer-events: none !important;

    position: absolute !important;

    right: 0 !important;
}


/* =========================================================
   THESYNC - PUBLIC / AUTH UI SIZE & SPACING ENHANCEMENT
   Landing / About / Login / Register / Email Verification /
   Password Reset pages
   Keep this section LAST in style3.css.
========================================================= */

/* =========================================================
   LANDING PAGE - SHARED NAVIGATION / HERO
========================================================= */

.nav-container,
.hero-container {
    width: min(94%, 1360px);
}

.nav-logo {
    width: 52px;
    height: 52px;
}

.brand-name {
    font-size: 22px;
}

.brand-subtitle {
    font-size: 11.5px;
}

.nav-links {
    gap: 34px;
}

.nav-links a {
    font-size: 15px;
}

.nav-login {
    padding: 12px 24px;
}

.hero-container {
    gap: clamp(54px, 8vw, 128px);
}

.hero-label {
    font-size: 14px;
}

.hero-description {
    max-width: 690px;
    font-size: clamp(16px, 1.45vw, 19px);
}

.btn {
    min-height: 54px;
    padding: 0 28px;
    font-size: 15px;
}

.hero-school-info p {
    font-size: 13px;
}

.logo-card {
    width: min(100%, 430px);
    padding: 50px 40px;
}

.logo-card > p {
    font-size: 14px;
}

.mini-feature {
    padding: 13px 15px;
    font-size: 13.5px;
}

.scroll-indicator {
    font-size: 11px;
}

/* =========================================================
   LANDING PAGE - CONTENT SECTIONS
========================================================= */

.section-container {
    width: min(92%, 1240px);
}

.section-label {
    font-size: 13px;
}

.section-heading {
    max-width: 760px;
}

.section-heading p {
    font-size: 16px;
}

.feature-card {
    padding: 31px;
}

.feature-card h3 {
    font-size: 20px;
}

.feature-card p {
    font-size: 14.5px;
    line-height: 1.75;
}

.feature-number,
.process-number,
.about-preview-label {
    font-size: 11.5px;
}

.about-preview-content > p,
.technology-section p,
.process-card p {
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   ABOUT PAGE
   These classes are defined in the page's inline <style>,
   so !important is intentional here.
========================================================= */

.about-page-label,
.about-section-label {
    font-size: 13px !important;
}

.about-hero-description {
    font-size: 18px !important;
}

.about-logo-card p {
    font-size: 13.5px !important;
}

.about-overview-content p,
.technology-about-content p,
.research-foundation > .about-section-container > p,
.plagiarism-technology-content p {
    font-size: 16px !important;
}

.about-highlight-box strong {
    font-size: 15px !important;
}

.about-highlight-box p {
    font-size: 15px !important;
}

.about-feature-number {
    font-size: 12px !important;
}

.about-feature-card h3 {
    font-size: 19px !important;
}

.about-feature-card p {
    font-size: 14.5px !important;
}

.whisperx-badge,
.copyleaks-badge {
    font-size: 13px !important;
}

.technology-flow-number,
.research-topic-number,
.plagiarism-number {
    font-size: 11px !important;
}

.technology-flow-item strong,
.research-topic strong,
.plagiarism-flow-item strong {
    font-size: 14px !important;
}

.technology-flow-item p,
.research-topic p,
.plagiarism-flow-item p {
    font-size: 13.5px !important;
}

.system-user-card span {
    font-size: 12px !important;
}

.system-user-card h3 {
    font-size: 19px !important;
}

.system-user-card p {
    font-size: 14.5px !important;
}

.plagiarism-card-header span {
    font-size: 10.5px !important;
}

.plagiarism-card-header h3 {
    font-size: 20px !important;
}

.about-cta p {
    font-size: 15px !important;
}

.about-back-button {
    min-height: 46px !important;
    padding: 0 19px !important;
    font-size: 14px !important;
}

/* =========================================================
   SHARED LANDING / ABOUT FOOTER
========================================================= */

.footer-main {
    width: min(1240px, calc(100% - 48px)) !important;
    gap: 64px !important;
}

.footer-column h3 {
    font-size: 17px !important;
}

.footer-column p {
    font-size: 15px !important;
}

.footer-logo {
    width: 58px !important;
    height: 58px !important;
}

.footer-brand strong {
    font-size: 22px !important;
}

.footer-brand span {
    font-size: 13px !important;
}

.research-department-logo {
    width: 68px !important;
    height: 68px !important;
}

.footer-small-label {
    font-size: 10.5px !important;
}

.research-department-header h3 {
    font-size: 18px !important;
}

.footer-contact-list {
    gap: 18px !important;
}

.contact-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
}

.footer-contact-item small {
    font-size: 11.5px !important;
}

.footer-contact-item span:not(.contact-icon) {
    font-size: 14px !important;
}

.footer-bottom {
    width: min(1240px, calc(100% - 48px)) !important;
    font-size: 13px !important;
}

/* =========================================================
   AUTH PAGES - SHARED LEFT VISUAL
========================================================= */

/* Brand logo */
body.login-page .login-brand img,
body.register-page .register-brand img,
body.registration-verify-page .registration-verify-brand img,
body.new-password-page .new-password-brand img,
body.reset-email-page .reset-email-brand img,
body.reset-code-page .reset-code-brand img {
    width: 56px !important;
    height: 56px !important;
}

/* Brand name */
body.login-page .login-brand-text strong,
body.register-page .register-brand-text strong,
body.registration-verify-page .registration-verify-brand-text strong,
body.new-password-page .new-password-brand-text strong,
body.reset-email-page .reset-email-brand-text strong,
body.reset-code-page .reset-code-brand-text strong {
    font-size: 22px !important;
}

/* Small brand subtitle */
body.login-page .login-brand-text span,
body.register-page .register-brand-text span,
body.registration-verify-page .registration-verify-brand-text span,
body.new-password-page .new-password-brand-text span,
body.reset-email-page .reset-email-brand-text span,
body.reset-code-page .reset-code-brand-text span {
    font-size: 11.5px !important;
}

/* Eyebrow */
body.login-page .login-eyebrow,
body.register-page .register-eyebrow,
body.registration-verify-page .registration-verify-eyebrow,
body.new-password-page .new-password-eyebrow,
body.reset-email-page .reset-email-eyebrow,
body.reset-code-page .reset-code-eyebrow {
    font-size: 13px !important;
}

/* Visual body text */
body.login-page .login-visual-content > p,
body.register-page .register-visual-content > p,
body.registration-verify-page .registration-verify-content > p,
body.new-password-page .new-password-visual-content > p,
body.reset-email-page .reset-email-visual-content > p,
body.reset-code-page .reset-code-visual-content > p {
    font-size: 16.5px !important;
}

/* Information badges */
body.login-page .login-ai-badge,
body.register-page .register-ai-badge,
body.registration-verify-page .registration-status-badge,
body.new-password-page .password-security-badge,
body.reset-email-page .reset-security-badge,
body.reset-code-page .verification-badge {
    padding: 11px 15px !important;
    font-size: 12.5px !important;
}

/* School footer */
body.login-page .login-school,
body.register-page .register-school,
body.registration-verify-page .registration-verify-school,
body.new-password-page .new-password-school,
body.reset-email-page .reset-email-school,
body.reset-code-page .reset-code-school {
    font-size: 12px !important;
}

/* =========================================================
   AUTH PAGES - RIGHT PANEL / CARDS
========================================================= */

body.login-page .login-card,
body.register-page .register-card,
body.registration-verify-page .registration-verify-card,
body.new-password-page .new-password-card,
body.reset-email-page .reset-email-card,
body.reset-code-page .reset-code-card {
    width: min(100%, 780px) !important;
}

/* Back links */
body.login-page .back-home,
body.register-page .register-back-home,
body.registration-verify-page .registration-back,
body.new-password-page .new-password-back,
body.reset-email-page .reset-back-login,
body.reset-code-page .reset-code-back {
    font-size: 14px !important;
}

/* Small green heading labels */
body.login-page .login-heading-label,
body.register-page .register-heading-label,
body.registration-verify-page .registration-verify-label,
body.new-password-page .new-password-heading-label,
body.reset-email-page .reset-email-heading-label,
body.reset-code-page .reset-code-heading-label {
    font-size: 12px !important;
}

/* Main form heading paragraph */
body.login-page .login-heading p,
body.register-page .register-heading p,
body.registration-verify-page .registration-verify-heading p,
body.new-password-page .new-password-heading p,
body.reset-email-page .reset-email-heading p,
body.reset-code-page .reset-code-heading p {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Field labels */
body.login-page .form-group label,
body.register-page .register-form-group label,
body.registration-verify-page .registration-code-group label,
body.new-password-page .new-password-form-group label,
body.reset-email-page .reset-form-group label,
body.reset-code-page .code-form-group label {
    font-size: 14px !important;
}

/* Text inputs/selects */
body.login-page .form-input,
body.login-page .password-wrapper input,
body.register-page .register-form-group input,
body.register-page .register-form-group select,
body.new-password-page .new-password-wrapper input,
body.reset-email-page .reset-form-group input {
    min-height: 52px !important;
    font-size: 14.5px !important;
}

/* Verification code fields */
body.registration-verify-page .registration-code-input,
body.reset-code-page .verification-code-input {
    min-height: 58px !important;
    font-size: 28px !important;
}

/* Helper text */
body.register-page .password-help,
body.registration-verify-page .registration-code-help,
body.new-password-page .password-requirements strong,
body.new-password-page .password-requirements ul,
body.reset-email-page .reset-email-help,
body.reset-code-page .verification-help {
    font-size: 12.5px !important;
    line-height: 1.65 !important;
}

/* Error messages */
body.login-page .login-error,
body.register-page .error-msg,
body.registration-verify-page .error-msg,
body.new-password-page .login-error,
body.reset-email-page .login-error,
body.reset-code-page .login-error {
    font-size: 12.5px !important;
}

/* Footer links/text */
body.login-page .form-footer,
body.register-page .register-form-footer,
body.registration-verify-page .registration-verify-footer,
body.registration-verify-page .verify-login-link-wrapper,
body.new-password-page .new-password-footer,
body.reset-email-page .reset-form-footer,
body.reset-code-page .code-form-footer {
    font-size: 14px !important;
}

/* Forgot / resend / inline links */
body.login-page .forgot-password-link,
body.registration-verify-page .resend-code-button,
body.new-password-page .new-password-login-link,
body.reset-email-page .reset-login-link,
body.reset-code-page .request-new-code-link {
    font-size: 13px !important;
}

/* Submit buttons */
body.login-page .btn-submit,
body.register-page .register-submit,
body.registration-verify-page .verify-email-button,
body.new-password-page .new-password-submit,
body.reset-email-page .reset-submit,
body.reset-code-page .verify-code-button {
    min-height: 52px !important;
    font-size: 14.5px !important;
}

/* =========================================================
   VERIFICATION TIMER / STATE TEXT
========================================================= */

body.registration-verify-page .verification-timer,
body.reset-code-page .verification-timer {
    font-size: 13px !important;
}

body.registration-verify-page .code-expired-message,
body.reset-code-page .code-expired-message {
    font-size: 12.5px !important;
}

/* =========================================================
   POPUP NOTIFICATIONS
========================================================= */

body.login-page .popup-notif,
body.register-page .popup-notif,
body.registration-verify-page .popup-notif,
body.new-password-page .popup-notif,
body.reset-email-page .popup-notif,
body.reset-code-page .popup-notif {
    font-size: 13.5px !important;
}

/* =========================================================
   MOBILE AUTH BRAND
========================================================= */

body.login-page .mobile-login-brand strong,
body.register-page .mobile-register-brand strong,
body.registration-verify-page .mobile-registration-brand strong,
body.new-password-page .mobile-new-password-brand strong,
body.reset-email-page .mobile-reset-brand strong,
body.reset-code-page .mobile-code-brand strong {
    font-size: 19px !important;
}

body.login-page .mobile-login-brand span,
body.register-page .mobile-register-brand span,
body.registration-verify-page .mobile-registration-brand span,
body.new-password-page .mobile-new-password-brand span,
body.reset-email-page .mobile-reset-brand span,
body.reset-code-page .mobile-code-brand span {
    font-size: 10.5px !important;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {
    .nav-container,
    .hero-container {
        width: min(92%, 1240px);
    }

    .footer-main,
    .footer-bottom {
        width: min(100% - 40px, 1240px) !important;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {
    .brand-name {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 10.5px;
    }

    .hero-label {
        font-size: 12.5px;
    }

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

    .btn {
        min-height: 52px;
        font-size: 14px;
    }

    .section-label {
        font-size: 12px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .footer-main {
        width: min(100% - 32px, 1240px) !important;
        gap: 38px !important;
    }

    .footer-bottom {
        width: min(100% - 32px, 1240px) !important;
    }

    /* Prevent mobile browser zoom and keep fields comfortably readable. */
    body.login-page .form-input,
    body.login-page .password-wrapper input,
    body.register-page .register-form-group input,
    body.register-page .register-form-group select,
    body.registration-verify-page .registration-code-input,
    body.new-password-page .new-password-wrapper input,
    body.reset-email-page .reset-form-group input,
    body.reset-code-page .verification-code-input {
        font-size: 16px !important;
    }

    body.registration-verify-page .registration-code-input,
    body.reset-code-page .verification-code-input {
        font-size: 24px !important;
    }

    body.login-page .login-heading p,
    body.register-page .register-heading p,
    body.registration-verify-page .registration-verify-heading p,
    body.new-password-page .new-password-heading p,
    body.reset-email-page .reset-email-heading p,
    body.reset-code-page .reset-code-heading p {
        font-size: 14.5px !important;
    }

    .about-hero-description {
        font-size: 16px !important;
    }

    .about-overview-content p,
    .technology-about-content p,
    .plagiarism-technology-content p {
        font-size: 15px !important;
    }
}

@media (max-width: 420px) {
    .nav-container,
    .hero-container,
    .section-container {
        width: calc(100% - 28px);
    }

    .footer-main,
    .footer-bottom {
        width: calc(100% - 28px) !important;
    }

    body.login-page .login-heading p,
    body.register-page .register-heading p,
    body.registration-verify-page .registration-verify-heading p,
    body.new-password-page .new-password-heading p,
    body.reset-email-page .reset-email-heading p,
    body.reset-code-page .reset-code-heading p {
        font-size: 14px !important;
    }
}
/* ==============================
   LOGIN FORM - LARGE / SPACIOUS
============================== */

body.login-page .login-card {
    width: min(100%, 580px) !important;
}

body.login-page .login-heading {
    margin-bottom: 42px !important;
}

body.login-page .login-heading-label {
    margin-bottom: 14px !important;
    font-size: 13px !important;
}

body.login-page .login-heading h2 {
    margin-bottom: 14px !important;
    font-size: clamp(2.3rem, 4vw, 3.1rem) !important;
}

body.login-page .login-heading p {
    max-width: 540px !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}


/* FORM SPACING */

body.login-page .form-group {
    margin-bottom: 30px !important;
}

body.login-page .form-group label {
    margin-bottom: 11px !important;
    font-size: 15px !important;
}


/* INPUT BOXES */

body.login-page .form-input,
body.login-page .password-wrapper input {
    width: 100% !important;

    height: 60px !important;
    min-height: 60px !important;

    padding: 0 18px !important;

    border-radius: 12px !important;

    font-size: 15px !important;
}

body.login-page .password-wrapper input {
    padding-right: 58px !important;
}


/* FORGOT PASSWORD */

body.login-page .forgot-password-wrapper {
    margin-top: 13px !important;
    margin-bottom: 22px !important;
}

body.login-page .forgot-password-link {
    font-size: 14px !important;
}


/* SIGN IN BUTTON */

body.login-page .btn-submit {
    height: 60px !important;
    min-height: 60px !important;

    margin-top: 8px !important;

    border-radius: 12px !important;

    font-size: 16px !important;
}


/* CREATE ACCOUNT FOOTER */

body.login-page .form-footer {
    margin-top: 32px !important;
    padding-top: 28px !important;

    font-size: 15px !important;
}

body.login-page .signup-link {
    font-size: 15px !important;
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 700px) {

    body.login-page .login-card {
        width: 100% !important;
        max-width: 580px !important;
    }

    body.login-page .form-input,
    body.login-page .password-wrapper input {
        height: 56px !important;
        min-height: 56px !important;

        font-size: 16px !important;
    }

    body.login-page .btn-submit {
        height: 56px !important;
        min-height: 56px !important;

        font-size: 15px !important;
    }

    body.login-page .form-group {
        margin-bottom: 25px !important;
    }
}
