/* ======================================================== */
/* DAISY SCANNER - MAIN WEBSITE CSS                         */
/* Used by: index.html, login.html, register.html, about     */
/* ======================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f3f7fd;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --border: #cbdbee;

    --primary: #0052cc;
    --primary-hover: #0043a4;

    --danger: #d9383a;
    --warn: #e28704;
    --success: #107c41;

    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-soft: #94a3b8;

    --shadow-soft: 0 10px 30px rgba(0, 82, 204, 0.06);
    --shadow-card: 0 8px 24px rgba(0, 82, 204, 0.045);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --sans-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --sans-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--sans-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 82, 204, 0.07) 1.4px, transparent 1.4px);
    background-size: 24px 24px;
}

/* ======================================================== */
/* NAVBAR                                                   */
/* ======================================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 6px 12px rgba(7, 91, 216, 0.16));
}

.logo-text {
    color: var(--text-primary);
    font-weight: 900;
}

.logo > .logo-text:first-of-type {
    letter-spacing: 0.055em;
}

.logo-divider {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: -0.12em;
}

.logo-divider + .logo-text {
    color: #596a84;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-flower {
    display: inline-block;
    font-size: 1.15rem;
    line-height: 1;
    animation: flowerFloat 2.6s ease-in-out infinite;
}

@keyframes flowerFloat {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-6deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(6deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--sans-heading);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active-link {
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 3px;
}

.nav-pill {
    color: var(--primary);
    background: #ffffff;
    border: 1px solid rgba(0, 82, 204, 0.22);
    border-radius: 999px;
    padding: 7px 16px;
    font-family: var(--sans-heading);
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0, 82, 204, 0.04);
    white-space: nowrap;
}

/* ======================================================== */
/* HERO                                                     */
/* ======================================================== */

.hero {
    position: relative;
    z-index: 1;
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 135px 24px 44px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    background: rgba(0, 82, 204, 0.07);
    border-radius: 8px;
    padding: 5px 14px;
    margin-bottom: 18px;
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 920px;
    margin-bottom: 24px;
    font-family: var(--sans-heading);
    font-size: clamp(2.8rem, 5.3vw, 4.7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.line-accent {
    color: var(--primary);
}

.line-dim {
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-sub {
    max-width: 740px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.65;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 800;
}

.highlight-text {
    color: #334155;
    font-weight: 700;
    border-bottom: 1.5px dashed rgba(0, 82, 204, 0.25);
}

.cursor {
    display: none;
}

/* ======================================================== */
/* SCAN CHOICE CARDS                                        */
/* ======================================================== */

.scan-choice-grid {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 10px;
}

.scan-choice-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.scan-choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.35);
    box-shadow: 0 16px 34px rgba(0, 82, 204, 0.08);
}

.featured-choice {
    border-color: rgba(0, 82, 204, 0.35);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.scan-choice-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.scan-choice-card h2 {
    font-family: var(--sans-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.scan-choice-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.scan-choice-card strong {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
}

.scan-hint {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.87rem;
    font-weight: 600;
}

/* ======================================================== */
/* SCAN FORM                                                */
/* ======================================================== */

.scan-form-wrap {
    width: 100%;
    max-width: 720px;
}

.scan-form {
    display: flex;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid #a2bfe8;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.scan-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.13), var(--shadow-soft);
}

.scan-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 22px 24px;
    color: var(--text-primary);
    font-family: var(--sans-body);
    font-size: 1rem;
}

.scan-form input::placeholder {
    color: var(--text-soft);
}

.scan-btn {
    border: none;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    padding: 0 34px;
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 800;
    transition: background 0.15s ease, transform 0.1s ease;
}

.scan-btn:hover {
    background: var(--primary-hover);
}

.scan-btn:active {
    transform: scale(0.98);
}

/* ======================================================== */
/* TRUST STRIP                                              */
/* ======================================================== */

.trust-strip {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto 50px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-strip-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.trust-strip-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 1.1rem;
    font-weight: 900;
}

.trust-strip-item span {
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 700;
}

/* ======================================================== */
/* 3 SIMPLE STEPS                                           */
/* ======================================================== */

.workflow-section {
    position: relative;
    z-index: 1;
    max-width: 1040px !important;
    margin: 0 auto !important;
    padding: 1rem 24px 3rem !important;
}

.section-label {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.workflow-section div[style*="grid"] {
    gap: 1.5rem !important;
}

.workflow-section div[style*="grid"] > div {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.workflow-section div[style*="grid"] > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 82, 204, 0.07);
}

.workflow-section strong {
    font-family: var(--sans-heading);
}

/* ======================================================== */
/* WHAT DAISY INSPECTS                                      */
/* ======================================================== */

.checks-section {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 24px 90px;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.check-card {
    min-height: 260px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.check-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.35);
    box-shadow: 0 16px 34px rgba(0, 82, 204, 0.08);
}

.check-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
}

.icon-red { background: rgba(217, 56, 58, 0.09); color: var(--danger); }
.icon-orange { background: rgba(226, 135, 4, 0.1); color: var(--warn); }
.icon-green { background: rgba(16, 124, 65, 0.09); color: var(--success); }
.icon-blue { background: rgba(0, 82, 204, 0.09); color: var(--primary); }

.check-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.check-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-high { background: var(--danger); }
.dot-medium { background: var(--warn); }
.dot-low { background: var(--success); }

/* ======================================================== */
/* AUTH PAGES                                               */
/* ======================================================== */

.auth-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 130px 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 16px 42px rgba(0, 82, 204, 0.08);
}

.auth-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(0, 82, 204, 0.07);
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.auth-card h1 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.auth-subtitle {
    margin-bottom: 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.9rem;
    font-weight: 800;
}

.auth-field input {
    width: 100%;
    border: 1px solid #a2bfe8;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    padding: 15px 16px;
    color: var(--text-primary);
    font-family: var(--sans-body);
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
}

.auth-btn {
    margin-top: 6px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    padding: 16px 22px;
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 900;
    transition: background 0.15s ease, transform 0.1s ease;
}

.auth-btn:hover {
    background: var(--primary-hover);
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-footer-text {
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
}

.auth-footer-text a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

.auth-alert {
    margin-bottom: 20px;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-weight: 800;
}

/* ======================================================== */
/* QUICK / NORMAL SCAN PAGE                                 */
/* ======================================================== */

.scan-page {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 90px);
    max-width: 900px;
    margin: 0 auto;
    padding: 135px 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 42px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.scan-panel h1 {
    font-family: var(--sans-heading);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.scan-panel h1 .line-accent,
.scan-panel h1 .line-dim {
    display: block;
}

.scan-panel p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.scan-panel .scan-form {
    margin-top: 8px;
}

.scan-panel .scan-hint {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.86rem;
}

/* ======================================================== */
/* ABOUT PAGE                                               */
/* ======================================================== */

.about-page {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 130px 24px 80px;
    color: var(--text-primary);
}

.about-hero {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.about-hero .hero-eyebrow {
    color: var(--primary);
    background: rgba(0, 82, 204, 0.07);
}

.about-hero h1 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.about-hero h1 .line-accent {
    color: var(--primary);
    display: block;
}

.about-hero h1 .line-dim {
    color: var(--text-secondary);
    display: block;
    font-weight: 500;
}

.about-hero p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 42px;
}

.about-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 82, 204, 0.07);
}

.about-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.about-card h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
}

.about-section {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow-card);
    margin-bottom: 32px;
}

.about-section-content {
    max-width: 850px;
}

.about-label {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-section h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin-bottom: 26px;
}

.about-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
}

.about-step strong {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans-heading);
    font-size: 0.9rem;
    font-weight: 900;
}

.about-step h3 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.about-step p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.about-note {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.about-note h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-note p {
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================================================== */
/* FOOTER                                                   */
/* ======================================================== */

footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
    padding: 32px 24px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.86rem;
    text-align: center;
    margin-top: 20px;
}

footer span {
    color: var(--primary);
    font-weight: 900;
}

/* ======================================================== */
/* ACCESSIBILITY MODAL                                      */
/* ======================================================== */

.accessibility-trigger {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.28);
    transition: transform 0.18s ease, background 0.15s ease;
}

.accessibility-trigger:hover {
    background: var(--primary-hover);
    transform: scale(1.06);
}

.accessibility-trigger svg {
    width: 26px;
    height: 26px;
}

.accessibility-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.accessibility-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.acc-modal-content {
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
    animation: accSlideUp 0.25s ease;
}

@keyframes accSlideUp {
    from { transform: translateY(16px); }
    to { transform: translateY(0); }
}

.acc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.acc-modal-header h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.acc-close-btn {
    border: none;
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.acc-modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.acc-section h3 {
    margin-bottom: 12px;
    color: #334155;
    font-family: var(--sans-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.acc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.acc-btn {
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    padding: 12px 14px;
    font-family: var(--sans-body);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.15s ease;
}

.acc-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.acc-btn.active {
    background: #e4f0ff !important;
    border-color: #3b82f6 !important;
    color: #1d4ed8 !important;
    font-weight: 800;
}

.theme-dot {
    width: 16px;
    height: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
}

.dot-default { background: #f1f5f9; }
.dot-white { background: #ffffff; }
.dot-yellow { background: #fef08a; }
.dot-blue { background: #bfdbfe; }

/* Accessible themes */
body[data-accessible-theme="white"] {
    background: #ffffff !important;
}

body[data-accessible-theme="white"]::before {
    display: none !important;
}

body[data-accessible-theme="yellow"] {
    background: #fffbeb !important;
    color: #1e1b4b !important;
}

body[data-accessible-theme="yellow"]::before {
    display: none !important;
}

body[data-accessible-theme="yellow"] .check-card,
body[data-accessible-theme="yellow"] .auth-card,
body[data-accessible-theme="yellow"] .trust-strip-item,
body[data-accessible-theme="yellow"] .workflow-section div[style*="grid"] > div,
body[data-accessible-theme="yellow"] .scan-choice-card,
body[data-accessible-theme="yellow"] .scan-panel,
body[data-accessible-theme="yellow"] .about-card,
body[data-accessible-theme="yellow"] .about-section,
body[data-accessible-theme="yellow"] .about-note,
body[data-accessible-theme="yellow"] nav {
    background: #fef3c7 !important;
    border-color: #d97706 !important;
}

body[data-accessible-theme="blue"] {
    background: #eff6ff !important;
    color: #1e3a8a !important;
}

body[data-accessible-theme="blue"]::before {
    display: none !important;
}

body[data-accessible-theme="blue"] .check-card,
body[data-accessible-theme="blue"] .auth-card,
body[data-accessible-theme="blue"] .trust-strip-item,
body[data-accessible-theme="blue"] .workflow-section div[style*="grid"] > div,
body[data-accessible-theme="blue"] .scan-choice-card,
body[data-accessible-theme="blue"] .scan-panel,
body[data-accessible-theme="blue"] .about-card,
body[data-accessible-theme="blue"] .about-section,
body[data-accessible-theme="blue"] .about-note,
body[data-accessible-theme="blue"] nav {
    background: #dbeafe !important;
    border-color: #2563eb !important;
}

/* ======================================================== */
/* RESPONSIVE                                               */
/* ======================================================== */

@media (max-width: 1100px) {
    .checks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-pill {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: auto;
        padding: 120px 18px 42px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .scan-choice-grid {
        grid-template-columns: 1fr;
    }

    .scan-form {
        flex-direction: column;
    }

    .scan-form input {
        border-bottom: 1px solid var(--border);
    }

    .scan-btn {
        width: 100%;
        padding: 18px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .checks-grid {
        grid-template-columns: 1fr;
    }

    .legend {
        gap: 16px;
    }

    .auth-card {
        padding: 28px 22px;
    }

    .auth-card h1 {
        font-size: 1.8rem;
    }

    .scan-page {
        padding: 120px 18px 50px;
    }

    .scan-panel {
        padding: 30px 22px;
    }

    .about-page {
        padding: 112px 18px 60px;
    }

    .about-step {
        padding: 16px;
    }

    .acc-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================== */
/* AIKIDO-INSPIRED SAAS HOMEPAGE REDESIGN                   */
/* Homepage only                                            */
/* ======================================================== */

.saas-home {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

/* ======================================================== */
/* SAAS HERO                                                */
/* ======================================================== */

.saas-hero {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 44px;
    align-items: center;
    min-height: 620px;
    padding: 24px 0 70px;
}

.hero-left {
    max-width: 680px;
}

.saas-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 82, 204, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-card);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 124, 65, 0.12);
}

.hero-left h1 {
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(3.1rem, 5.6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.saas-subtitle {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 14px;
    padding: 0 22px;
    text-decoration: none;
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.primary-action {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 82, 204, 0.18);
}

.primary-action:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.secondary-action {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.secondary-action:hover {
    border-color: rgba(0, 82, 204, 0.35);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    gap: 12px;
}

.hero-proof div {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(203, 219, 238, 0.78);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-card);
}

.hero-proof strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
}

.hero-proof span {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
}

/* ======================================================== */
/* DASHBOARD PREVIEW                                        */
/* ======================================================== */

.hero-right {
    position: relative;
}

.hero-right::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -1;
    border-radius: 38px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 82, 204, 0.13), transparent 36%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.10), transparent 32%);
    filter: blur(2px);
}

.dashboard-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(203, 219, 238, 0.95);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 26px 70px rgba(0, 82, 204, 0.12);
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.055), transparent 36%);
    pointer-events: none;
}

.dashboard-top,
.score-panel,
.finding-list,
.dashboard-footer {
    position: relative;
    z-index: 1;
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-label {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dashboard-top h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.live-pill {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(16, 124, 65, 0.1);
    color: var(--success);
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
}

.score-panel {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.score-ring {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #ffffff 56%, transparent 57%),
        conic-gradient(var(--primary) 0 72%, #e2e8f0 72% 100%);
    box-shadow: inset 0 0 0 1px #e2e8f0;
}

.score-ring span {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.score-ring small {
    margin-top: 4px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.risk-summary-mini {
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    padding: 18px;
}

.risk-summary-mini p {
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.risk-summary-mini h3 {
    margin-bottom: 6px;
    color: var(--warn);
    font-family: var(--sans-heading);
    font-size: 1.8rem;
    font-weight: 900;
}

.risk-summary-mini span {
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 700;
}

.finding-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.finding-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 15px 16px;
}

.finding-row strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.92rem;
    font-weight: 900;
}

.finding-row span {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.finding-row b {
    border-radius: 999px;
    padding: 5px 10px;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.high-row {
    border-left: 4px solid var(--danger);
}

.high-row b {
    color: var(--danger);
    background: rgba(217, 56, 58, 0.1);
}

.medium-row {
    border-left: 4px solid var(--warn);
}

.medium-row b {
    color: var(--warn);
    background: rgba(226, 135, 4, 0.12);
}

.low-row {
    border-left: 4px solid var(--success);
}

.low-row b {
    color: var(--success);
    background: rgba(16, 124, 65, 0.1);
}

.dashboard-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 700;
}

.dashboard-footer span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ======================================================== */
/* PRODUCT SCAN SECTION                                     */
/* ======================================================== */

.scan-products {
    padding: 50px 0 70px;
}

.section-heading-center {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading-center h2,
.platform-copy h2,
.workflow-header h2 {
    margin-top: 10px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.section-heading-center p,
.platform-copy p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1220px;
    margin: 0 auto;
}

.auth-success {
    color: var(--success);
    border-color: rgba(16, 124, 65, 0.25);
    background: rgba(16, 124, 65, 0.08);
}

.product-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    padding: 32px;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.07);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 82, 204, 0.36);
    box-shadow: 0 22px 42px rgba(0, 82, 204, 0.09);
}

.featured-product {
    border-color: rgba(0, 82, 204, 0.34);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.recommended-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    border-radius: 999px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    padding: 6px 10px;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.product-icon svg,
.coverage-icon svg {
    width: 24px;
    height: 24px;
}

.product-code {
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.product-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 22px;
}

.product-meta span {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    padding: 6px 10px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 800;
}

.product-card strong {
    position: relative;
    z-index: 1;
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
}

.saas-safe-note {
    text-align: center;
    margin-top: 20px;
}

/* ======================================================== */
/* PLATFORM COVERAGE                                        */
/* ======================================================== */

.platform-section {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 34px;
    align-items: start;
    padding: 70px 0;
}

.platform-copy {
    position: sticky;
    top: 110px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.coverage-card {
    min-height: 240px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.coverage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.32);
    box-shadow: 0 18px 34px rgba(0, 82, 204, 0.08);
}

.coverage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
}

.coverage-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.1rem;
    font-weight: 900;
}

.coverage-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ======================================================== */
/* WORKFLOW                                                 */
/* ======================================================== */

.workflow-panel {
    margin: 40px 0 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.workflow-header {
    max-width: 680px;
    margin-bottom: 24px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.workflow-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    padding: 24px;
}

.workflow-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.8rem;
    font-weight: 900;
}

.workflow-card h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.08rem;
    font-weight: 900;
}

.workflow-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ======================================================== */
/* ABOUT SECTION                                            */
/* ======================================================== */

.about-home {
    scroll-margin-top: 96px;
    padding: 90px 0 20px;
}

.about-home-intro {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 30px;
}

.about-home-intro h2 {
    max-width: 720px;
    margin-top: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.about-home-intro > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.about-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-home-card {
    min-height: 245px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-home-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.32);
    box-shadow: 0 18px 34px rgba(0, 82, 204, 0.08);
}

.about-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 38px;
    border-radius: 13px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.76rem;
    font-weight: 900;
}

.about-home-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.15rem;
    font-weight: 900;
}

.about-home-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

.about-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 24px;
    border: 1px solid rgba(0, 82, 204, 0.25);
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff, #eef5ff);
    padding: 30px 34px;
    box-shadow: var(--shadow-card);
}

.about-cta::after {
    content: "";
    position: absolute;
    right: 150px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.06);
    pointer-events: none;
}

.about-cta > * {
    position: relative;
    z-index: 1;
}

.about-cta h3 {
    max-width: 650px;
    margin-top: 7px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.about-cta .primary-action {
    flex: 0 0 auto;
}

/* Hide old homepage sections if they still exist somewhere */
.hero,
.workflow-section,
.checks-section {
    display: none;
}

/* But do not hide hero-style classes inside about page */
.about-page .hero-eyebrow {
    display: inline-flex;
}

/* ======================================================== */
/* SAAS HOMEPAGE RESPONSIVE                                 */
/* ======================================================== */

@media (max-width: 1060px) {
    .saas-hero,
    .platform-section,
    .about-home-intro {
        grid-template-columns: 1fr;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .saas-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .platform-copy {
        position: relative;
        top: auto;
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .about-home-intro {
        gap: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deep-product {
        grid-column: 1 / -1;
        min-height: 290px;
    }
}

@media (max-width: 768px) {
    .saas-home {
        padding: 105px 18px 54px;
    }

    .saas-hero {
        min-height: auto;
        gap: 30px;
        padding-bottom: 44px;
    }

    .hero-left h1 {
        font-size: 3rem;
        letter-spacing: -0.055em;
    }

    .hero-proof,
    .product-grid,
    .coverage-grid,
    .workflow-grid,
    .about-home-grid {
        grid-template-columns: 1fr;
    }

    .deep-product {
        grid-column: auto;
    }

    .score-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .dashboard-card {
        padding: 22px;
        border-radius: 22px;
    }

    .dashboard-top {
        flex-direction: column;
    }

    .finding-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .product-card {
        min-height: auto;
    }

    .workflow-panel {
        padding: 24px;
        border-radius: 22px;
    }

    .about-home {
        padding-top: 70px;
    }

    .about-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px;
    }
}
/* ======================================================== */
/* SAAS SUBPAGES - ABOUT / SCAN / REPORT HISTORY            */
/* Matches new DAISY SaaS homepage                          */
/* ======================================================== */

.saas-subpage {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
    padding: 125px 24px 80px;
}

.saas-page-hero {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
    margin-bottom: 46px;
}

.saas-page-hero.centered {
    display: block;
    max-width: 840px;
    margin: 0 auto 46px;
    text-align: center;
}

.saas-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 82, 204, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-card);
}

.saas-page-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 124, 65, 0.12);
}

.saas-page-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.065em;
}

.saas-page-hero.centered h1 {
    margin-left: auto;
    margin-right: auto;
}

.saas-page-hero p {
    max-width: 680px;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.75;
}

.saas-page-hero.centered p {
    margin-left: auto;
    margin-right: auto;
}

.saas-hero-panel {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    padding: 30px;
    box-shadow: 0 26px 70px rgba(0, 82, 204, 0.10);
}

.saas-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.saas-panel-label {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.saas-panel-pill {
    border-radius: 999px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    padding: 7px 11px;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.saas-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.saas-mini-card {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    padding: 20px;
}

.saas-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 900;
}

.saas-mini-card span {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ======================================================== */
/* SCAN INTERFACE                                           */
/* ======================================================== */

.saas-scan-shell {
    max-width: 980px;
    margin: 0 auto;
}

.saas-scan-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    padding: 34px;
    box-shadow: 0 26px 70px rgba(0, 82, 204, 0.10);
}

.saas-scan-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(0, 82, 204, 0.07);
}

.saas-scan-card > * {
    position: relative;
    z-index: 1;
}

.scan-mode-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 28px;
}

.scan-mode-header h1 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.scan-mode-header p {
    max-width: 660px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.scan-mode-tag {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    padding: 8px 13px;
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
}

.saas-url-form {
    display: flex;
    overflow: hidden;
    border: 1px solid #a2bfe8;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.saas-url-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12), var(--shadow-soft);
}

.saas-url-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 21px 22px;
    color: var(--text-primary);
    font-family: var(--sans-body);
    font-size: 1rem;
}

.saas-url-form button {
    border: none;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    padding: 0 28px;
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
    transition: background 0.15s ease, transform 0.1s ease;
}

.saas-url-form button:hover {
    background: var(--primary-hover);
}

.scan-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.scan-feature-chip {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fbff;
    padding: 15px;
}

.scan-feature-chip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.88rem;
    font-weight: 900;
}

.scan-feature-chip span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.scan-error {
    margin-bottom: 18px;
    border: 1px solid #fecaca;
    border-radius: 14px;
    background: #fee2e2;
    color: #991b1b;
    padding: 13px 15px;
    font-size: 0.9rem;
    font-weight: 800;
}

/* ======================================================== */
/* ABOUT SAAS PAGE                                          */
/* ======================================================== */

.about-saas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.about-saas-card {
    min-height: 250px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-saas-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.32);
    box-shadow: 0 18px 34px rgba(0, 82, 204, 0.08);
}

.about-saas-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.about-saas-card h2 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.18rem;
    font-weight: 900;
}

.about-saas-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.7;
}

.saas-info-section {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
    align-items: start;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.80);
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.saas-info-section h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.saas-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.saas-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
}

.saas-step span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans-heading);
    font-size: 0.85rem;
    font-weight: 900;
}

.saas-step h3 {
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 900;
}

.saas-step p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ======================================================== */
/* REPORT HISTORY SAAS PAGE                                 */
/* ======================================================== */

.report-history-panel {
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.90);
    padding: 28px;
    box-shadow: 0 26px 70px rgba(0, 82, 204, 0.08);
}

.report-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.report-toolbar h2 {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.report-toolbar p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.report-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.report-table th {
    padding: 0 16px 8px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
}

.report-table td {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 16px;
    color: var(--text-primary);
    font-size: 0.92rem;
}

.report-table td:first-child {
    border-left: 1px solid #e2e8f0;
    border-radius: 16px 0 0 16px;
    font-weight: 800;
}

.report-table td:last-child {
    border-right: 1px solid #e2e8f0;
    border-radius: 0 16px 16px 0;
}

.report-risk {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 11px;
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
}

.report-risk.high {
    color: var(--danger);
    background: rgba(217, 56, 58, 0.1);
}

.report-risk.medium {
    color: var(--warn);
    background: rgba(226, 135, 4, 0.12);
}

.report-risk.low {
    color: var(--success);
    background: rgba(16, 124, 65, 0.1);
}

.report-view-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    padding: 10px 14px;
    text-decoration: none;
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 900;
}

.report-view-btn:hover {
    background: var(--primary-hover);
}

.empty-report-card {
    border: 1px dashed #a2bfe8;
    border-radius: 22px;
    background: #f8fbff;
    padding: 38px;
    text-align: center;
}

.empty-report-card h2 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.6rem;
    font-weight: 900;
}

.empty-report-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* ======================================================== */
/* SUBPAGE RESPONSIVE                                       */
/* ======================================================== */

@media (max-width: 980px) {
    .saas-page-hero,
    .saas-info-section {
        grid-template-columns: 1fr;
    }

    .about-saas-grid,
    .scan-feature-row {
        grid-template-columns: 1fr;
    }

    .saas-page-hero {
        text-align: center;
    }

    .saas-page-hero p,
    .saas-page-hero h1 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .saas-subpage {
        padding: 105px 18px 54px;
    }

    .saas-page-hero h1 {
        font-size: 2.8rem;
        letter-spacing: -0.055em;
    }

    .saas-mini-grid {
        grid-template-columns: 1fr;
    }

    .scan-mode-header {
        flex-direction: column;
    }

    .saas-url-form {
        flex-direction: column;
    }

    .saas-url-form input {
        border-bottom: 1px solid var(--border);
    }

    .saas-url-form button {
        width: 100%;
        padding: 18px;
    }

    .report-history-panel {
        overflow-x: auto;
        padding: 20px;
    }

    .report-table {
        min-width: 760px;
    }
}

/* ======================================================== */
/* POLISHED NAVIGATION + MOTION                             */
/* ======================================================== */

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s ease var(--reveal-delay, 0ms),
        transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.js-enabled .reveal-item.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ======================================================== */
/* REGISTRATION EXPERIENCE                                 */
/* ======================================================== */

.auth-register-page {
    padding-top: 112px;
}

.register-shell {
    width: 100%;
    max-width: 1160px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: stretch;
}

.register-intro {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 10%, rgba(96, 165, 250, 0.32), transparent 34%),
        linear-gradient(145deg, #0b1f45, #0052cc);
    color: #ffffff;
    padding: 48px 42px;
    box-shadow: 0 28px 70px rgba(0, 52, 130, 0.2);
}

.register-intro::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -115px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 34px rgba(255, 255, 255, 0.035),
        0 0 0 68px rgba(255, 255, 255, 0.025);
}

.register-intro > * {
    position: relative;
    z-index: 1;
}

.register-intro .auth-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #bfdbfe;
}

.register-intro h1 {
    margin: 12px 0 18px;
    font-family: var(--sans-heading);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.065em;
}

.register-intro > p {
    max-width: 430px;
    color: #dbeafe;
    font-size: 1rem;
    line-height: 1.75;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 44px;
}

.register-benefits > div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.register-benefits > div > span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 900;
}

.register-benefits p {
    color: #dbeafe;
    font-size: 0.9rem;
    line-height: 1.5;
}

.register-benefits strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-family: var(--sans-heading);
}

.register-card {
    max-width: none;
    border-radius: 28px;
    padding: 42px;
}

.auth-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 72px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 8px;
    background: #eef5ff;
    color: var(--primary);
    cursor: pointer;
    padding: 7px 10px;
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
}

.password-requirements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-top: 4px;
    list-style: none;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    transition: color 0.2s ease;
}

.password-requirements li span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.password-requirements li.requirement-met {
    color: var(--success);
}

.password-requirements li.requirement-met span {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 124, 65, 0.12);
}

/* ======================================================== */
/* REPORT HISTORY CARDS                                    */
/* ======================================================== */

.report-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.report-overview > div {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fbff;
    padding: 18px;
}

.report-overview span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-overview strong {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.55rem;
    font-weight: 900;
}

.text-high { color: var(--danger) !important; }
.text-medium { color: var(--warn) !important; }
.text-low { color: var(--success) !important; }

.report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.report-card {
    --report-risk-color: var(--success);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 4px solid var(--report-risk-color);
    border-radius: 22px;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(0, 82, 204, 0.09);
}

.report-card-high { --report-risk-color: var(--danger); }
.report-card-medium { --report-risk-color: var(--warn); }
.report-card-low { --report-risk-color: var(--success); }

.report-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.report-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-family: var(--sans-heading);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.report-card h3 {
    max-width: 310px;
    overflow: hidden;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.05rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.report-card-body {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

.report-score-ring {
    width: 106px;
    height: 106px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #ffffff 60%, transparent 61%),
        conic-gradient(
            var(--report-risk-color) calc(var(--report-score) * 1%),
            #e2e8f0 0
        );
}

.report-score-ring strong {
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.35rem;
    font-weight: 900;
}

.report-score-ring span {
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.report-details > div span {
    display: block;
    margin-bottom: 3px;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.report-details > div strong {
    color: var(--text-primary);
    font-size: 0.88rem;
}

.report-details p {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.55;
}

.report-card .report-view-btn {
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 900px) {
    body.nav-menu-open {
        overflow: hidden;
    }

    nav {
        height: 68px;
        padding: 0 18px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .nav-pill {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 14px;
        right: 14px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
        margin: 0;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        padding: 12px;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        transform-origin: top;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        width: 100%;
        border: 0 !important;
        border-radius: 12px;
        padding: 13px 14px !important;
    }

    .nav-links a:hover,
    .nav-links a.active-link {
        background: #eef5ff;
        color: var(--primary);
    }

    .nav-links a[data-logout-link] {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--danger);
    }

    .nav-links a[data-logout-link]::before {
        content: "↪";
        width: 22px;
        height: 22px;
        display: inline-grid;
        place-items: center;
        border: 1px solid currentColor;
        border-radius: 6px;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
        transform: rotate(180deg);
    }

    .register-shell {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .register-intro {
        padding: 36px;
    }

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

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

@media (max-width: 600px) {
    .logo-divider,
    .logo-divider + .logo-text {
        display: none;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .saas-home,
    .saas-subpage {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-left h1,
    .saas-page-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3rem);
    }

    .hero-actions > a {
        width: 100%;
    }

    .auth-register-page {
        padding: 92px 14px 40px;
    }

    .register-intro,
    .register-card {
        border-radius: 22px;
        padding: 26px 22px;
    }

    .register-intro h1 {
        font-size: 2.5rem;
    }

    .register-benefits,
    .auth-field-grid,
    .password-requirements,
    .report-overview {
        grid-template-columns: 1fr;
    }

    .register-benefits {
        gap: 14px;
    }

    .report-history-panel {
        overflow: visible;
        padding: 16px;
    }

    .report-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .report-card {
        padding: 20px;
    }

    .report-card-top {
        flex-direction: column;
    }

    .report-card h3 {
        max-width: 100%;
    }

    .report-card-body {
        grid-template-columns: 92px 1fr;
        gap: 14px;
    }

    .report-score-ring {
        width: 88px;
        height: 88px;
    }
}

/* ======================================================== */
/* LOGIN, ABOUT DETAIL + LOGOUT CONFIRMATION                */
/* ======================================================== */

.auth-login-page {
    padding-top: 112px;
}

.login-shell {
    max-width: 1080px;
    grid-template-columns: 1fr 0.9fr;
}

.login-intro {
    min-height: 600px;
}

.login-intro h1 {
    max-width: 560px;
}

.login-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-preview {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 42px;
}

.login-preview > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
}

.login-preview > div > span {
    color: #93c5fd;
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 900;
}

.login-preview p {
    color: #dbeafe;
    font-size: 0.88rem;
    line-height: 1.5;
}

.login-preview strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-family: var(--sans-heading);
}

.about-story {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
    margin-top: 24px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 5% 10%, rgba(0, 82, 204, 0.08), transparent 30%),
        rgba(255, 255, 255, 0.9);
    padding: 38px;
    box-shadow: var(--shadow-card);
}

.about-story-copy h3 {
    max-width: 600px;
    margin: 9px 0 16px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.about-story-copy p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

.about-story-copy p + p {
    margin-top: 13px;
}

.about-principles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-principles article {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
}

.about-principles article > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.7rem;
    font-weight: 900;
}

.about-principles h4 {
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.95rem;
    font-weight: 900;
}

.about-principles p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

.logout-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(6px);
    transition: opacity 0.2s ease, visibility 0.2s;
}

.logout-modal.visible {
    opacity: 1;
    visibility: visible;
}

.logout-dialog {
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
    transform: translateY(14px) scale(0.98);
    transition: transform 0.22s ease;
}

.logout-modal.visible .logout-dialog {
    transform: translateY(0) scale(1);
}

.logout-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(217, 56, 58, 0.1);
    color: var(--danger);
}

.logout-icon svg {
    width: 23px;
    height: 23px;
}

.logout-dialog h2 {
    margin: 7px 0 10px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.logout-dialog > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.logout-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.logout-actions button,
.logout-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0 15px;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--sans-heading);
    font-size: 0.84rem;
    font-weight: 900;
}

.logout-cancel {
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-primary);
}

.logout-confirm {
    border: 1px solid var(--danger);
    background: var(--danger);
    color: #ffffff;
}

@media (max-width: 900px) {
    .login-shell,
    .about-story {
        grid-template-columns: 1fr;
    }

    .login-intro {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .auth-login-page {
        padding: 92px 14px 40px;
    }

    .login-intro,
    .login-card {
        padding: 26px 22px;
    }

    .about-story {
        gap: 26px;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .logout-actions {
        grid-template-columns: 1fr;
    }

    .accessibility-trigger {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }
}

/* ======================================================== */
/* AUTHORIZED DEEP SCAN                                    */
/* ======================================================== */

.deep-scan-page {
    max-width: 1280px;
}

.deep-scan-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.deep-scan-card {
    max-width: none;
}

.deep-scan-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.deep-scan-form .auth-field input {
    padding: 18px;
}

.authorization-check {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    border: 1px solid rgba(0, 82, 204, 0.24);
    border-radius: 16px;
    background: #f4f8ff;
    padding: 16px;
    cursor: pointer;
}

.authorization-check input {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.authorization-check span {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
}

.authorization-check strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.9rem;
}

.deep-scan-notice {
    border-left: 4px solid var(--success);
    border-radius: 14px;
    background: rgba(16, 124, 65, 0.07);
    padding: 15px 17px;
}

.deep-scan-notice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--success);
    font-family: var(--sans-heading);
    font-size: 0.86rem;
}

.deep-scan-notice p {
    color: #365b49;
    font-size: 0.82rem;
    line-height: 1.6;
}

.deep-scan-submit {
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    padding: 0 22px;
    font-family: var(--sans-heading);
    font-size: 0.94rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 82, 204, 0.18);
    transition: background 0.16s ease, transform 0.16s ease;
}

.deep-scan-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.deep-verification-guide {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.deep-verification-guide h3 {
    margin: 7px 0 14px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 1.06rem;
}

.deep-verification-guide ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.55;
}

.deep-verification-guide li::marker { color: var(--primary); font-weight: 900; }
.deep-verification-guide li strong { color: var(--text-primary); }
.deep-verification-guide > p {
    margin: 17px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f4f8ff;
    color: #36577f;
    font-size: .83rem;
    line-height: 1.5;
}

.deep-coverage-panel {
    position: sticky;
    top: 96px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.deep-coverage-panel > h2 {
    margin: 8px 0 22px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.deep-coverage-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deep-coverage-list article {
    display: flex;
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #ffffff;
    padding: 16px;
}

.deep-coverage-list article > span {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.deep-coverage-list h3 {
    margin-bottom: 4px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.91rem;
    font-weight: 900;
}

.deep-coverage-list p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.55;
}

.engine-status {
    margin-top: 20px;
    border-radius: 18px;
    background: #f8fafc;
    padding: 18px;
}

.engine-status h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--sans-heading);
    font-size: 0.9rem;
    font-weight: 900;
}

.engine-status > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding: 10px 0;
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.engine-status b {
    border-radius: 999px;
    padding: 5px 9px;
    font-family: var(--sans-heading);
    font-size: 0.68rem;
}

.engine-ready {
    background: rgba(16, 124, 65, 0.1);
    color: var(--success);
}

.engine-disabled {
    background: #e2e8f0;
    color: var(--text-secondary);
}

.engine-status > p {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .deep-scan-layout {
        grid-template-columns: 1fr;
    }

    .deep-coverage-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 600px) {
    .deep-scan-card,
    .deep-coverage-panel {
        border-radius: 22px;
        padding: 22px;
    }

    .deep-coverage-panel > h2 {
        font-size: 1.7rem;
    }
}

/* ======================================================== */
/* DAISY 2026 HOME + SCAN EXPERIENCE                        */
/* ======================================================== */

.logo {
    text-decoration: none;
}

.sleek-home {
    position: relative;
    z-index: 1;
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 72px 34px 80px;
}

.sleek-hero {
    position: relative;
    width: 100vw;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
    overflow: hidden;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 82px max(34px, calc((100vw - 1372px) / 2 + 34px));
    background:
        linear-gradient(120deg, rgba(5, 18, 43, 0.99), rgba(8, 34, 72, 0.97)),
        #07152f;
    color: #ffffff;
}

.sleek-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.hero-glow {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    right: 8%;
    width: 520px;
    height: 520px;
    background: rgba(28, 112, 255, 0.22);
}

.hero-glow-two {
    bottom: -260px;
    left: 14%;
    width: 580px;
    height: 580px;
    background: rgba(40, 193, 164, 0.1);
}

.sleek-hero-copy,
.security-console {
    position: relative;
    z-index: 2;
}

.hero-status,
.scan-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(147, 197, 253, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #bfdbfe;
    padding: 8px 13px;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.12);
}

.sleek-hero h1 {
    max-width: 720px;
    margin: 24px 0 22px;
    font-family: var(--sans-heading);
    font-size: clamp(3.2rem, 6vw, 6.1rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.sleek-hero h1 em {
    color: #7db2ff;
    font-style: normal;
}

.sleek-hero-copy > p {
    max-width: 650px;
    color: #cbd9eb;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.sleek-hero .hero-actions {
    margin: 32px 0 28px;
}

.sleek-hero .primary-action {
    gap: 12px;
    background: #ffffff;
    color: #08224a;
}

.sleek-hero .primary-action:hover {
    background: #eaf2ff;
}

.sleek-hero .primary-action svg {
    width: 18px;
}

.sleek-hero .secondary-action {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: #9fb1c9;
    font-size: 0.76rem;
    font-weight: 700;
}

.hero-assurance span::before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    margin: 0 8px 1px 0;
    border-radius: 50%;
    background: #4ade80;
}

.security-console {
    border: 1px solid rgba(148, 180, 222, 0.22);
    border-radius: 24px;
    background: rgba(8, 23, 50, 0.78);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.console-bar {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(148, 180, 222, 0.16);
    padding: 0 18px;
    color: #8297b5;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.console-bar > div {
    display: flex;
    gap: 6px;
}

.console-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #315278;
}

.console-bar b {
    justify-self: end;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.12);
    color: #86efac;
    padding: 5px 8px;
    font-size: 0.58rem;
}

.console-body {
    padding: clamp(22px, 4vw, 38px);
}

.console-target,
.console-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.console-target {
    border-bottom: 1px solid rgba(148, 180, 222, 0.15);
    padding-bottom: 22px;
}

.console-target small,
.console-score small {
    display: block;
    margin-bottom: 6px;
    color: #7790af;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.console-target strong {
    font-family: var(--sans-heading);
    font-size: 1.12rem;
}

.console-target > span {
    border: 1px solid rgba(125, 178, 255, 0.25);
    border-radius: 999px;
    background: rgba(29, 111, 232, 0.12);
    color: #9cc5ff;
    padding: 7px 11px;
    font-size: 0.67rem;
    font-weight: 800;
}

.console-score {
    justify-content: flex-start;
    padding: 28px 0;
}

.console-score-ring {
    width: 112px;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 112px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #0b1f43 60%, transparent 61%),
        conic-gradient(#f59e0b 0 72%, rgba(255, 255, 255, 0.1) 72% 100%);
}

.console-score-ring strong {
    font-family: var(--sans-heading);
    font-size: 2rem;
}

.console-score-ring small {
    margin: -3px 0 0;
}

.console-score h2 {
    margin-bottom: 5px;
    font-family: var(--sans-heading);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    letter-spacing: -0.04em;
}

.console-score p {
    color: #8da2bd;
    font-size: 0.78rem;
}

.console-findings {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.console-findings > div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(148, 180, 222, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    padding: 13px;
}

.console-findings strong {
    font-size: 0.75rem;
}

.console-findings b {
    color: #9db0c8;
    font-size: 0.58rem;
}

.severity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.severity-high { background: #fb7185; box-shadow: 0 0 12px rgba(251, 113, 133, 0.7); }
.severity-medium { background: #fbbf24; box-shadow: 0 0 12px rgba(251, 191, 36, 0.6); }
.severity-low { background: #60a5fa; box-shadow: 0 0 12px rgba(96, 165, 250, 0.6); }

.console-pulse {
    margin-top: 20px;
    color: #748ba8;
    font-size: 0.67rem;
}

.console-pulse span {
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 50%;
    background: #4ade80;
}

.monitoring-story,
.scan-selector-section,
.coverage-explainer,
.about-home {
    scroll-margin-top: 95px;
}

.monitoring-story {
    padding: 100px 0 20px;
}

.monitoring-story-heading {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 0.52fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 38px;
}

.monitoring-story-heading h2 {
    max-width: 820px;
    margin-top: 10px;
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.monitoring-story-heading > p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.monitoring-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.monitoring-journey::before {
    content: "";
    position: absolute;
    top: 38px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, #b8d3f7, #6aa7ef, #b8d3f7);
}

.monitoring-journey article {
    position: relative;
    min-height: 275px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid #d4e1f1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(24, 69, 126, 0.06);
}

.monitoring-journey article > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #91a5bf;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.journey-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 35px;
    place-items: center;
    border: 1px solid #c2d9f7;
    border-radius: 17px;
    color: #075bd8;
    background: #edf5ff;
    box-shadow: 0 0 0 8px #fff;
}

.journey-icon svg { width: 27px; height: 27px; }
.monitoring-journey h3 { margin-bottom: 10px; font-size: 1.15rem; letter-spacing: -0.025em; }
.monitoring-journey p { color: var(--text-secondary); line-height: 1.65; }

.monitoring-story-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 18px;
    padding: 20px 24px;
    border: 1px solid #cbdcf2;
    border-radius: 18px;
    background: linear-gradient(90deg, #f6faff, #eef5ff);
}

.monitoring-story-cta > div { display: grid; gap: 3px; }
.monitoring-story-cta span { color: var(--text-secondary); }
.monitoring-story-cta a { color: #075bd8; font-weight: 800; text-decoration: none; white-space: nowrap; }

.scan-selector-section {
    padding: 110px 0 90px;
}

.sleek-section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.55fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.sleek-section-heading h2,
.coverage-intro h2,
.responsible-panel h2 {
    max-width: 760px;
    margin-top: 10px;
    font-family: var(--sans-heading);
    font-size: clamp(2.2rem, 4.4vw, 4.3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.sleek-section-heading > p,
.coverage-intro > p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.sleek-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sleek-mode-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dce6f2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    padding: 30px;
    box-shadow: 0 14px 45px rgba(16, 43, 77, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sleek-mode-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 100%;
    background: rgba(0, 82, 204, 0.035);
}

.sleek-mode-card:hover {
    transform: translateY(-8px);
    border-color: #a9c6eb;
    box-shadow: 0 25px 65px rgba(16, 43, 77, 0.12);
}

.sleek-mode-card.mode-deep {
    border-color: #143f77;
    background: linear-gradient(155deg, #0a1c3b, #0d2b59);
    color: #ffffff;
}

.mode-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mode-number {
    color: #9aabc0;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 800;
}

.mode-duration {
    border-radius: 999px;
    background: #edf4fc;
    color: #49637f;
    padding: 6px 10px;
    font-size: 0.65rem;
    font-weight: 800;
}

.mode-deep .mode-duration {
    background: rgba(125, 178, 255, 0.12);
    color: #a8cdff;
}

.mode-recommended {
    position: absolute;
    top: 0;
    right: 24px;
    border-radius: 0 0 10px 10px;
    background: var(--primary);
    color: #ffffff;
    padding: 7px 11px;
    font-size: 0.61rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mode-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 44px 0 24px;
    border-radius: 15px;
    background: #edf4fc;
    color: var(--primary);
}

.mode-icon svg {
    width: 25px;
    height: 25px;
}

.mode-deep .mode-icon {
    background: rgba(125, 178, 255, 0.12);
    color: #8cbdff;
}

.sleek-mode-card h3 {
    font-family: var(--sans-heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sleek-mode-card > p {
    min-height: 72px;
    margin: 10px 0 22px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.mode-deep > p {
    color: #aebdd0;
}

.sleek-mode-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    list-style: none;
}

.sleek-mode-card li {
    position: relative;
    padding-left: 19px;
    color: #41556d;
    font-size: 0.78rem;
    line-height: 1.45;
}

.sleek-mode-card li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 7px;
    height: 7px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
}

.mode-deep li {
    color: #c0cede;
}

.sleek-mode-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--sans-heading);
    font-size: 0.82rem;
    font-weight: 800;
}

.mode-deep > a {
    border-color: rgba(255, 255, 255, 0.12);
    color: #9dc5ff;
}

.coverage-explainer {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(45px, 8vw, 110px);
    border-top: 1px solid #d8e3ef;
    padding: 100px 0;
}

.coverage-intro {
    align-self: start;
    position: sticky;
    top: 110px;
}

.coverage-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.coverage-intro > p {
    margin: 24px 0;
}

.text-action {
    color: var(--primary);
    font-family: var(--sans-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
}

.coverage-stack {
    display: flex;
    flex-direction: column;
}

.coverage-stack article {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid #d8e3ef;
    padding: 26px 4px;
}

.coverage-stack article:first-child {
    border-top: 1px solid #d8e3ef;
}

.coverage-stack article > span {
    color: #8aa0ba;
    font-family: var(--sans-heading);
    font-size: 0.68rem;
    font-weight: 800;
}

.coverage-stack h3 {
    margin-bottom: 7px;
    font-family: var(--sans-heading);
    font-size: 1.05rem;
    font-weight: 800;
}

.coverage-stack p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.65;
}

.coverage-stack b {
    border-radius: 999px;
    background: #eaf2fc;
    color: #41668e;
    padding: 6px 9px;
    font-size: 0.62rem;
}

.responsible-panel {
    display: grid;
    grid-template-columns: 90px minmax(260px, 0.9fr) minmax(300px, 1.1fr);
    gap: 36px;
    align-items: center;
    border-radius: 28px;
    background: #071a37;
    color: #ffffff;
    padding: clamp(30px, 5vw, 60px);
}

.responsible-mark {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 178, 255, 0.25);
    border-radius: 22px;
    background: rgba(125, 178, 255, 0.08);
    color: #83b8ff;
}

.responsible-mark svg {
    width: 34px;
}

.responsible-panel h2 {
    margin-top: 8px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.responsible-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.responsible-points p {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
}

.responsible-points p:last-child {
    border: 0;
    padding-bottom: 0;
}

.responsible-points strong {
    color: #9ec8ff;
    font-size: 0.78rem;
}

.responsible-points span {
    color: #b3c1d3;
    font-size: 0.78rem;
    line-height: 1.55;
}

.daisy-home .about-home {
    margin-top: 100px;
}

/* Scan page */

.scanner-page {
    background:
        radial-gradient(circle at 10% 18%, rgba(56, 132, 255, 0.1), transparent 26%),
        #f4f7fb;
}

.scan-experience {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 128px 0 80px;
}

.scan-experience-hero {
    margin-bottom: 34px;
}

.scan-breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 26px;
    color: #8294aa;
    font-size: 0.72rem;
}

.scan-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.scan-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
}

.scan-eyebrow {
    border-color: #c9dbf1;
    background: #eaf2fc;
    color: #315f93;
}

.scan-hero-grid h1 {
    max-width: 850px;
    margin: 17px 0 15px;
    font-family: var(--sans-heading);
    font-size: clamp(2.8rem, 5.5vw, 5.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.065em;
}

.scan-hero-grid > div:first-child > p {
    max-width: 730px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.scan-mode-summary {
    min-width: 220px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-left: 1px solid #cbd9e9;
    padding-left: 24px;
}

.scan-mode-index {
    color: #a1b1c4;
    font-family: var(--sans-heading);
    font-size: 0.72rem;
    font-weight: 800;
}

.scan-mode-summary small,
.scan-mode-summary span {
    display: block;
    color: #8192a6;
    font-size: 0.66rem;
}

.scan-mode-summary strong {
    display: block;
    margin: 3px 0;
    font-family: var(--sans-heading);
    font-size: 1rem;
}

.scan-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.72fr);
    gap: 18px;
    align-items: stretch;
}

.scan-launch-card,
.scan-side-card {
    border: 1px solid #dce5ef;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(24, 54, 89, 0.07);
}

.scan-launch-card {
    padding: clamp(26px, 5vw, 52px);
}

.scan-side-card {
    padding: 30px;
}

.scan-launch-heading h2,
.scan-side-card > h2,
.scan-detail-heading h2,
.scan-mode-switcher h2 {
    margin: 9px 0;
    font-family: var(--sans-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.scan-launch-heading > p,
.scan-detail-heading > p {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.modern-scan-form {
    margin-top: 30px;
}

.modern-scan-form > label:first-child {
    display: block;
    margin-bottom: 9px;
    color: #253b54;
    font-family: var(--sans-heading);
    font-size: 0.75rem;
    font-weight: 800;
}

.scan-url-control {
    min-height: 62px;
    display: flex;
    align-items: center;
    border: 1px solid #c7d6e7;
    border-radius: 15px;
    background: #fbfdff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.scan-url-control:focus-within {
    border-color: #4a8ce5;
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.09);
}

.scan-url-control > span {
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7188a3;
}

.scan-url-control svg {
    width: 20px;
}

.scan-url-control input,
.scan-url-control select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 18px 0 0;
    color: var(--text-primary);
    font: 500 0.96rem var(--sans-body);
}

.scan-url-control select {
    cursor: pointer;
    appearance: auto;
}

.scan-empty-action { margin-top: 26px; }
.scan-empty-action p { margin-bottom: 4px; color: #6a7d98; }
.scan-empty-action .scan-launch-button { text-decoration: none; }

.scan-launch-button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    border: 0;
    border-radius: 14px;
    background: #0756c9;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--sans-heading);
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 82, 204, 0.19);
    transition: transform 0.18s ease, background 0.18s ease;
}

.scan-launch-button:hover {
    background: #0347ab;
    transform: translateY(-2px);
}

.scan-launch-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.scan-launch-button svg {
    width: 18px;
}

.modern-scan-form .authorization-check {
    margin-top: 16px;
}

.scan-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin-top: 24px;
    border-top: 1px solid #e4eaf1;
    padding-top: 20px;
    color: #72849a;
    font-size: 0.69rem;
    font-weight: 700;
}

.scan-trust-strip span {
    display: flex;
    gap: 6px;
    align-items: center;
}

.scan-trust-strip svg {
    width: 16px;
    color: #17804b;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.expectation-list article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    border-top: 1px solid #e4eaf1;
    padding: 17px 0;
}

.expectation-list b {
    color: #87a0bc;
    font-size: 0.62rem;
}

.expectation-list strong,
.expectation-list span {
    display: block;
}

.expectation-list strong {
    margin-bottom: 3px;
    font-family: var(--sans-heading);
    font-size: 0.79rem;
}

.expectation-list span {
    color: var(--text-secondary);
    font-size: 0.72rem;
    line-height: 1.55;
}

.compact-engine-status {
    margin-top: 16px;
}

.engine-runtime {
    margin: -4px 0 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
}

.result-engine-panel {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid rgba(105, 132, 196, 0.2);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(12, 28, 59, 0.96), rgba(7, 19, 43, 0.96));
    box-shadow: 0 22px 50px rgba(1, 8, 24, 0.22);
}

.result-engine-heading,
.result-engine-card > div {
    display: flex;
    align-items: center;
}

.result-engine-heading {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.result-engine-heading h2 {
    margin: 7px 0 0;
    color: #f5f8ff;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.engine-runtime-badge {
    padding: 9px 13px;
    border: 1px solid rgba(113, 174, 255, 0.28);
    border-radius: 999px;
    color: #a9ccff;
    background: rgba(53, 113, 214, 0.1);
    font-size: 0.76rem;
    font-weight: 700;
}

.result-engine-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.result-engine-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
}

.result-engine-card > div {
    gap: 9px;
    color: #edf4ff;
}

.result-engine-card > b {
    display: inline-block;
    margin-top: 14px;
    color: #9db1d0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-engine-card > p {
    margin: 8px 0 0;
    color: #9eacc4;
    font-size: 0.82rem;
    line-height: 1.55;
}

.engine-state-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #78859b;
    box-shadow: 0 0 0 5px rgba(120, 133, 155, 0.1);
}

.engine-state-completed .engine-state-dot,
.engine-state-ready .engine-state-dot {
    background: #38d996;
    box-shadow: 0 0 0 5px rgba(56, 217, 150, 0.12);
}

.engine-state-completed > b,
.engine-state-ready > b {
    color: #58e5a7;
}

.engine-state-failed .engine-state-dot,
.engine-state-blocked .engine-state-dot {
    background: #ffbd5b;
    box-shadow: 0 0 0 5px rgba(255, 189, 91, 0.12);
}

.engine-state-failed > b,
.engine-state-blocked > b {
    color: #ffc56e;
}

@media (max-width: 700px) {
    .result-engine-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-engine-grid {
        grid-template-columns: 1fr;
    }

    .result-engine-panel {
        padding: 21px;
    }
}

.scan-detail-section {
    margin-top: 70px;
}

.scan-detail-heading {
    max-width: 750px;
    margin-bottom: 30px;
}

.scan-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.scan-detail-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    border: 1px solid #dce5ef;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    padding: 26px;
}

.detail-number {
    color: #87a0bc;
    font-family: var(--sans-heading);
    font-size: 0.65rem;
    font-weight: 800;
}

.scan-detail-card h3 {
    margin-bottom: 8px;
    font-family: var(--sans-heading);
    font-size: 1rem;
    font-weight: 800;
}

.scan-detail-card p,
.scan-detail-card li {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.65;
}

.scan-detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
    padding-left: 18px;
}

.scan-detail-card code {
    border-radius: 4px;
    background: #edf3f9;
    color: #27496f;
    padding: 2px 4px;
    font-size: 0.72rem;
}

.scan-mode-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 70px;
    border-radius: 24px;
    background: #091d3c;
    color: #ffffff;
    padding: 34px;
}

.scan-mode-switcher h2 {
    margin-bottom: 0;
    font-size: 1.7rem;
}

.mode-switch-links {
    display: flex;
    gap: 8px;
}

.mode-switch-links a {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 11px;
    color: #b8c7da;
    padding: 11px 15px;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 800;
}

.mode-switch-links a.current {
    border-color: #72aaff;
    background: #1761c7;
    color: #ffffff;
}

/* Scan progress overlay */

body.scan-is-running {
    overflow: hidden;
}

.scan-progress-overlay {
    position: fixed;
    inset: 0;
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 40%, rgba(32, 101, 201, 0.26), transparent 38%),
        rgba(3, 13, 31, 0.94);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(13px);
    transition: opacity 0.25s ease, visibility 0.25s;
}

.scan-progress-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.scan-progress-dialog {
    width: min(500px, 100%);
    text-align: center;
    color: #ffffff;
}

.scanner-orbit {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(124, 177, 255, 0.22);
    border-radius: 50%;
}

.orbit-ring-one {
    border-top-color: #70aaff;
    animation: scannerSpin 2.3s linear infinite;
}

.orbit-ring-two {
    inset: 16px;
    border-right-color: #55e0c0;
    animation: scannerSpin 1.65s linear infinite reverse;
}

.scanner-core {
    position: absolute;
    inset: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 177, 255, 0.35);
    border-radius: 50%;
    background: rgba(31, 95, 190, 0.24);
    color: #a9ceff;
    box-shadow: 0 0 45px rgba(54, 130, 242, 0.24);
    animation: scannerPulse 1.8s ease-in-out infinite;
}

.scanner-core svg {
    width: 38px;
}

.scanner-orbit i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6aa7ff;
    box-shadow: 0 0 14px #6aa7ff;
}

.scanner-orbit i:nth-of-type(1) { top: 16px; left: 31px; animation: scannerBlink 1.2s ease infinite; }
.scanner-orbit i:nth-of-type(2) { right: 4px; bottom: 54px; animation: scannerBlink 1.2s 0.35s ease infinite; }
.scanner-orbit i:nth-of-type(3) { bottom: 5px; left: 63px; animation: scannerBlink 1.2s 0.7s ease infinite; }

.scan-progress-kicker {
    color: #82b6ff;
    font-family: var(--sans-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scan-progress-dialog h2 {
    margin: 10px 0;
    font-family: var(--sans-heading);
    font-size: clamp(1.7rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.scan-progress-dialog > p {
    min-height: 48px;
    color: #aabbd0;
    font-size: 0.84rem;
    line-height: 1.6;
}

.scan-progress-track {
    height: 4px;
    overflow: hidden;
    margin: 26px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.scan-progress-track span {
    width: 42%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #65a4ff, #65e1c6, transparent);
    animation: scanTrack 1.6s ease-in-out infinite;
}

.scan-progress-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.scan-progress-meta > div {
    border: 1px solid rgba(148, 180, 222, 0.15);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
}

.scan-progress-meta small,
.scan-progress-meta strong {
    display: block;
}

.scan-progress-meta small {
    margin-bottom: 3px;
    color: #758ca9;
    font-size: 0.62rem;
    text-transform: uppercase;
}

.scan-progress-meta strong {
    font-family: var(--sans-heading);
    font-size: 0.9rem;
}

.scan-progress-dialog .scan-progress-note {
    min-height: 0;
    margin-top: 20px;
    color: #7087a4;
    font-size: 0.68rem;
}

@keyframes scannerSpin {
    to { transform: rotate(360deg); }
}

@keyframes scannerPulse {
    50% { transform: scale(1.08); box-shadow: 0 0 65px rgba(54, 130, 242, 0.38); }
}

@keyframes scannerBlink {
    50% { opacity: 0.25; transform: scale(0.7); }
}

@keyframes scanTrack {
    from { transform: translateX(-110%); }
    to { transform: translateX(340%); }
}

@media (max-width: 1050px) {
    .sleek-hero {
        grid-template-columns: 1fr 0.9fr;
        gap: 42px;
    }

    .sleek-hero h1 {
        font-size: clamp(3.1rem, 7vw, 5rem);
    }

    .sleek-mode-grid {
        grid-template-columns: 1fr 1fr;
    }

    .monitoring-journey {
        grid-template-columns: 1fr 1fr;
    }

    .monitoring-journey::before { display: none; }

    .mode-deep {
        grid-column: 1 / -1;
        min-height: 430px;
    }

    .coverage-explainer {
        gap: 50px;
    }

    .responsible-panel {
        grid-template-columns: 70px 1fr;
    }

    .responsible-points {
        grid-column: 2;
    }
}

@media (max-width: 900px) {
    .sleek-home {
        padding-right: 24px;
        padding-left: 24px;
    }

    .sleek-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        margin-right: -24px;
        margin-left: -24px;
        padding: 82px 24px 64px;
    }

    .security-console {
        width: min(620px, 100%);
        transform: none;
    }

    .monitoring-story-heading,
    .sleek-section-heading,
    .coverage-explainer {
        grid-template-columns: 1fr;
    }

    .coverage-intro {
        position: static;
    }

    .scan-hero-grid,
    .scan-workspace {
        grid-template-columns: 1fr;
    }

    .scan-mode-summary {
        border-top: 1px solid #cbd9e9;
        border-left: 0;
        padding-top: 18px;
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .sleek-home {
        padding-right: 16px;
        padding-left: 16px;
    }

    .sleek-hero {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .sleek-hero h1 {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .hero-assurance {
        flex-direction: column;
    }

    .monitoring-story { padding-top: 72px; }
    .monitoring-story-heading { gap: 18px; }
    .monitoring-journey { grid-template-columns: 1fr; }
    .monitoring-journey article { min-height: 0; }
    .monitoring-story-cta { align-items: flex-start; flex-direction: column; }

    .security-console {
        border-radius: 18px;
    }

    .console-body {
        padding: 19px;
    }

    .console-score-ring {
        width: 92px;
        height: 92px;
        flex-basis: 92px;
    }

    .sleek-section-heading {
        gap: 18px;
    }

    .sleek-mode-grid {
        grid-template-columns: 1fr;
    }

    .mode-deep {
        grid-column: auto;
    }

    .sleek-mode-card {
        min-height: 480px;
        padding: 25px;
    }

    .coverage-stack article {
        grid-template-columns: 30px 1fr;
    }

    .coverage-stack article > b {
        grid-column: 2;
        justify-self: start;
    }

    .responsible-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        border-radius: 22px;
    }

    .responsible-points {
        grid-column: 1;
    }

    .responsible-points p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .scan-experience {
        width: min(100% - 28px, 1280px);
        padding-top: 106px;
    }

    .scan-hero-grid h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .scan-launch-card,
    .scan-side-card {
        border-radius: 20px;
    }

    .scan-launch-card,
    .scan-side-card {
        padding: 22px;
    }

    .scan-detail-grid {
        grid-template-columns: 1fr;
    }

    .scan-detail-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .scan-mode-switcher {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .mode-switch-links {
        width: 100%;
    }

    .mode-switch-links a {
        flex: 1;
        text-align: center;
    }

    .scan-progress-meta {
        grid-template-columns: 1fr;
    }

    .scanner-orbit {
        width: 135px;
        height: 135px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-ring,
    .scanner-core,
    .scanner-orbit i,
    .scan-progress-track span {
        animation-duration: 8s;
    }

    .sleek-mode-card:hover,
    .scan-launch-button:hover {
        transform: none;
    }
}
