:root {
    --background: #080d16;
    --foreground: #f5f6f8;
    --muted-foreground: #9fa7b6;
    --border: #1d2530;
    --border-light: #263140;
    --surface: #0d1420;
    --surface-2: #131c29;
    --surface-3: #182333;
    --coral: #ff6f69;
    --coral-hover: #ff817c;
    --coral-dark: #e85b56;
    --coral-foreground: #ffffff;
    --success: #3ecf8e;
    --success-soft: rgba(62, 207, 142, 0.12);
    --warning: #f0ad4e;
    --warning-soft: rgba(240, 173, 78, 0.12);
    --critical: #f2685c;
    --critical-soft: rgba(242, 104, 92, 0.12);
    --info: #68a7ff;
    --info-soft: rgba(104, 167, 255, 0.12);
    --white: #ffffff;
    --black: #000000;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm:
        0 10px 30px
        rgba(0, 0, 0, 0.18);
    --shadow:
        0 28px 70px
        rgba(0, 0, 0, 0.32);
    --transition:
        160ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 111, 105, 0.08),
            transparent 28rem
        ),
        var(--background);
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.offcanvas-open {
    overflow: hidden;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea {
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition),
        opacity var(--transition);
}

img {
    max-width: 100%;
}

::selection {
    background: var(--coral);
    color: var(--coral-foreground);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.font-display {
    font-family:
        "Mona Sans",
        "Inter Tight",
        "Inter",
        sans-serif;
}

.font-mono {
    font-family:
        "JetBrains Mono",
        monospace;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.text-muted-fg {
    color: var(--muted-foreground) !important;
}

.text-coral {
    color: var(--coral) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-critical {
    color: var(--critical) !important;
}

.text-info-custom {
    color: var(--info) !important;
}

.bg-surface {
    background: var(--surface) !important;
}

.bg-surface-2 {
    background: var(--surface-2) !important;
}

.border-custom {
    border-color: var(--border) !important;
}

.border-coral {
    border-color: var(--coral) !important;
}

.text-badge {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.text-2xs {
    font-size: 1rem;
}

.text-xs {
    font-size: 1rem;
}

.text-sm {
    font-size: 1rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.25rem;
}

.text-xl {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.text-2xl {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.text-section {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.max-w-24 {
    max-width: 24rem;
}

.max-w-32 {
    max-width: 32rem;
}

.max-w-42 {
    max-width: 42rem;
}

.max-w-48 {
    max-width: 48rem;
}

.max-w-56 {
    max-width: 56rem;
}

.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.section-border {
    border-top: 1px solid var(--border);
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--coral);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-eyebrow::before {
    width: 1.8rem;
    height: 1px;
    background: var(--coral);
    content: "";
}

/* -------------------------------------------------
   NAVIGATION
------------------------------------------------- */

.navbar-x-height {
    min-height: 74px;
}

.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border);
    background:
        rgba(8, 13, 22, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar-sticky.is-scrolled {
    background:
        rgba(8, 13, 22, 0.96);
    box-shadow:
        0 12px 32px
        rgba(0, 0, 0, 0.24);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 2.25rem;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        "Inter",
        sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    text-decoration: none;
}

.brand-mark::after {
    width: 7px;
    height: 7px;
    margin-top: -12px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--coral);
    content: "";
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 155px;
    height: 38px;
    object-fit: contain;
}

.navbar-nav {
    gap: 0.35rem;
}

.nav-link-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.62rem !important;
    color: var(--muted-foreground) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: 0.4s all ease-in-out;
    border-radius: var(--radius-sm);
}

.nav-link-custom:hover,
.nav-link-custom:focus,
.nav-link-custom.active {
    color: var(--foreground) !important;
}

.nav-link-custom:hover {
    background: var(--surface-2);
}

.nav-link-custom.active::after {
    position: absolute;
    right: 0.72rem;
    bottom: 2px;
    left: 0.72rem;
    height: 2px;
    border-radius: 999px;
    background: var(--coral);
    content: "";
}

.nav-link-custom.dropdown-toggle {
    border: 0;
    background: transparent;
}

.public-nav-dropdown {
    min-width: 170px;
    padding: 0.45rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.public-nav-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 38px;
    width: 100%;
    border-radius: 7px;
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.public-nav-dropdown-button {
    border: 0;
    background: transparent;
}

.public-nav-dropdown .dropdown-item:hover,
.public-nav-dropdown .dropdown-item:focus {
    background: var(--surface-2);
    color: var(--foreground);
}

.public-nav-dropdown .dropdown-item i {
    width: 16px;
    color: var(--coral);
    text-align: center;
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 1.2rem;
    height: 1.2rem;
    filter: invert(1);
}

.offcanvas {
    background: var(--background);
    color: var(--foreground);
}

.offcanvas-header {
    border-bottom: 1px solid var(--border);
}

.offcanvas-title {
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-weight: 700;
}

.btn-close {
    filter: invert(1) grayscale(1);
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.lang-toggle a,
.lang-toggle button {
    display: inline-flex;
    min-width: 34px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.55rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted-foreground);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.lang-toggle a:hover,
.lang-toggle button:hover {
    color: var(--foreground);
}

.lang-toggle a.active,
.lang-toggle button.active {
    background: var(--surface-3);
    color: var(--foreground);
}

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

.btn-coral,
.btn-outline-custom,
.btn-surface,
.btn-ghost-custom {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1.15rem;
    border-radius: var(--radius-sm);
    font-family:
        "Mona Sans",
        "Inter Tight",
        "Inter",
        sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.btn-coral {
    border: 1px solid var(--coral);
    background: var(--coral);
    color: var(--coral-foreground) !important;
    box-shadow:
        0 10px 28px
        rgba(255, 111, 105, 0.18);
}

.btn-coral:hover,
.btn-coral:focus {
    border-color: var(--coral-hover);
    background: var(--coral-hover);
    color: var(--coral-foreground) !important;
    transform: translateY(-1px);
}

.btn-coral:active {
    transform: translateY(0);
}

.btn-coral:disabled,
.btn-coral.is-loading {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.btn-outline-custom {
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--foreground) !important;
}

.btn-outline-custom:hover {
    border-color: var(--muted-foreground);
    background: var(--surface);
}

.btn-surface {
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--foreground) !important;
}

.btn-surface:hover {
    border-color: var(--border-light);
    background: var(--surface-3);
}

.btn-ghost-custom {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted-foreground) !important;
}

.btn-ghost-custom:hover {
    background: var(--surface);
    color: var(--foreground) !important;
}

.btn-nav {
    min-height: 40px;
    padding: 0.68rem 1rem !important;
    font-size: 1rem;
}

.btn-sm-custom {
    min-height: 38px;
    padding: 0.6rem 0.9rem;
    font-size: 1rem;
}

.btn-lg-custom {
    min-height: 54px;
    padding: 1rem 1.35rem;
    font-size: 1rem;
}

/* -------------------------------------------------
   ALERTS
------------------------------------------------- */

.public-alerts {
    position: fixed;
    top: 90px;
    right: 1.25rem;
    z-index: 1080;
    width: min(420px, calc(100vw - 2rem));
    pointer-events: none;
}

.public-alerts .container {
    width: auto;
    max-width: none;
    padding: 0;
}

.alert-custom {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0 0 0.75rem;
    padding: 0.95rem 1.05rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--foreground);
    box-shadow: var(--shadow-sm);
    pointer-events: auto;
}

.alert-custom i {
    margin-top: 0.25rem;
}

.alert-custom-content {
    flex: 1;
    min-width: 0;
}

.alert-custom-title {
    display: block;
    margin-bottom: 0.15rem;
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-weight: 700;
}

.alert-custom p,
.alert-custom ul {
    margin: 0;
    color: inherit;
    font-size: 1rem;
}

.alert-custom ul {
    padding-left: 1.15rem;
}

.alert-success-custom {
    border-color:
        rgba(62, 207, 142, 0.28);
    background:
        var(--success-soft);
    color: var(--success);
}

.alert-error-custom {
    border-color:
        rgba(242, 104, 92, 0.3);
    background:
        var(--critical-soft);
    color: #ff9188;
}

.alert-warning-custom {
    border-color:
        rgba(240, 173, 78, 0.3);
    background:
        var(--warning-soft);
    color: #ffc86e;
}

.alert-info-custom {
    border-color:
        rgba(104, 167, 255, 0.28);
    background:
        var(--info-soft);
    color: #96c2ff;
}

.alert-close {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

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

.pt-hero {
    position: relative;
    overflow: hidden;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.pt-hero::before {
    position: absolute;
    top: -340px;
    left: 50%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 111, 105, 0.12),
            transparent 68%
        );
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-pill-coral {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.78rem;
    border: 1px solid
        rgba(255, 111, 105, 0.24);
    border-radius: 999px;
    background:
        rgba(255, 111, 105, 0.07);
}

.hero-title {
    margin: 0 auto;
    color: var(--foreground);
    font-size:
        clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.98;
}

.hero-title-secondary {
    margin-left: 0.14em;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
    letter-spacing: 0;
}

@media (max-width: 767.98px) {
    .public-alerts {
        top: 82px;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .hero-title-secondary {
        margin-top: 0.16em;
        margin-left: 0;
    }
}

.hero-subtitle {
    margin-right: auto;
    margin-left: auto;
    color: var(--muted-foreground);
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.hero-form-shell {
    position: relative;
    max-width: 780px;
    margin: 2.5rem auto 0;
    padding: 0.65rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background:
        rgba(13, 20, 32, 0.9);
    box-shadow: var(--shadow);
}

.hero-form-shell::before {
    position: absolute;
    z-index: -1;
    top: 24px;
    right: 12%;
    left: 12%;
    height: 80%;
    border-radius: 50%;
    background:
        rgba(255, 111, 105, 0.13);
    filter: blur(55px);
    content: "";
}

.scan-mode-switch {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.scan-mode-option {
    position: relative;
}

.scan-mode-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.scan-mode-label {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background:
        rgba(255, 255, 255, 0.025);
    color: var(--muted-foreground);
    cursor: pointer;
    text-align: left;
}

.scan-mode-label:hover {
    background:
        rgba(255, 255, 255, 0.04);
    color: var(--foreground);
}

.scan-mode-option input:checked
+ .scan-mode-label {
    border-color:
        rgba(255, 111, 105, 0.55);
    background:
        rgba(255, 111, 105, 0.08);
    color: var(--foreground);
}

.scan-mode-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--coral);
}

.scan-mode-title {
    display: block;
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.scan-mode-description {
    display: block;
    margin-top: 0.1rem;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.hero-url-row {
    display: flex;
    gap: 0.55rem;
}

.url-input-wrap {
    position: relative;
    flex: 1;
}

.url-input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    z-index: 2;
    color: var(--muted-foreground);
    transform: translateY(-50%);
}

.hero-url-input,
.form-control-custom,
.form-select-custom {
    width: 100%;
    border: 1px solid var(--border-light);
    outline: none;
    background: var(--background);
    color: var(--foreground);
    box-shadow: none;
}

.hero-url-input {
    min-height: 54px;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    border-radius: var(--radius-sm);
}

.hero-url-input::placeholder,
.form-control-custom::placeholder {
    color: #626c7a;
}

.hero-url-input:focus,
.form-control-custom:focus,
.form-select-custom:focus {
    border-color: var(--coral);
    box-shadow:
        0 0 0 4px
        rgba(255, 111, 105, 0.1);
}

.hero-submit {
    min-width: 190px;
    min-height: 54px;
}

.scan-policy-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem 1.1rem;
    margin-top: 0.85rem;
    color: var(--muted-foreground);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 14px;
}

.scan-policy-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.scan-policy-item i {
    color: var(--success);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
    margin-top: 1.8rem;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-trust-item i {
    color: var(--coral);
}

/* -------------------------------------------------
   BROWSER / REPORT PREVIEW
------------------------------------------------- */

.preview-stage {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.preview-stage::before {
    position: absolute;
    top: 5rem;
    right: 15%;
    left: 15%;
    height: 60%;
    border-radius: 50%;
    background:
        rgba(255, 111, 105, 0.08);
    filter: blur(80px);
    content: "";
}

.browser-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.browser-toolbar {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-light);
}

.browser-dot:first-child {
    background: #ff6b65;
}

.browser-dot:nth-child(2) {
    background: #f0ad4e;
}

.browser-dot:nth-child(3) {
    background: #3ecf8e;
}

.browser-address {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--background);
    color: var(--muted-foreground);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 14px;
    text-align: start;
}

.report-preview-body {
    padding: 2rem;
}

.report-preview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.report-score-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.report-score {
    display: grid;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    place-items: center;
    border: 7px solid var(--coral);
    border-radius: 50%;
    background: var(--background);
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.report-score-label {
    display: block;
    color: var(--muted-foreground);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.report-score-title {
    display: block;
    margin-top: 0.2rem;
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.report-categories {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.report-category {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
}

.report-category-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.report-category-title {
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.report-category-score {
    color: var(--coral);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 1rem;
    font-weight: 600;
}

.mini-progress {
    overflow: hidden;
    height: 5px;
    margin-top: 0.7rem;
    border-radius: 999px;
    background: var(--border);
}

.mini-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--coral);
}

.report-finding {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        rgba(255, 255, 255, 0.018);
}

.report-finding-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background:
        rgba(255, 111, 105, 0.1);
    color: var(--coral);
}

.report-finding strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
}

.report-finding p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* -------------------------------------------------
   SECTIONS AND CARDS
------------------------------------------------- */

.section-heading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-title {
    margin: 0.75rem 0 0;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size:
        clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

.section-description {
    margin: 1rem 0 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.feature-card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(19, 28, 41, 0.9),
            rgba(13, 20, 32, 0.92)
        );
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
}

.feature-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid
        rgba(255, 111, 105, 0.2);
    border-radius: 12px;
    background:
        rgba(255, 111, 105, 0.08);
    color: var(--coral);
    font-size: 1rem;
}

.feature-title {
    margin-bottom: 0.6rem;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
}

.feature-description {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.how-step {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.how-step-number {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--coral);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 1rem;
    font-weight: 600;
}

.how-step-title {
    margin-bottom: 0.65rem;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
}

.how-step-description {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* -------------------------------------------------
   PRICING
------------------------------------------------- */

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
}

.pricing-card.featured {
    border-color:
        rgba(255, 111, 105, 0.55);
    background:
        linear-gradient(
            145deg,
            rgba(255, 111, 105, 0.06),
            var(--surface) 42%
        );
    box-shadow:
        0 28px 80px
        rgba(255, 111, 105, 0.08);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-family:
        "JetBrains Mono",
        monospace;
    font-size: 1rem;
    font-weight: 600;
}

.pricing-name {
    margin: 0;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-description {
    min-height: 48px;
    margin: 0.65rem 0 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    margin-top: 1.5rem;
}

.pricing-price strong {
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.pricing-price span {
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.pricing-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.6rem 0;
    padding: 0;
    list-style: none;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--muted-foreground);
    font-size: 1rem;
}

.pricing-list i {
    margin-top: 0.25rem;
    color: var(--success);
}

.pricing-domain-form {
    display: grid;
    gap: 0.7rem;
}

/* -------------------------------------------------
   PROFESSIONAL SERVICES
------------------------------------------------- */

.professional-home-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.professional-home-copy .section-description {
    max-width: 640px;
}

.professional-home-copy .btn-coral {
    margin-top: 1.75rem;
}

.professional-home-points {
    border-top: 1px solid var(--border-light);
}

.professional-home-point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--border-light);
}

.professional-home-point > span {
    color: var(--coral);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 600;
}

.professional-home-point strong {
    display: block;
    color: var(--foreground);
    font-family: "Mona Sans", "Inter Tight", sans-serif;
    font-size: 1.05rem;
}

.professional-home-point p {
    margin: 0.3rem 0 0;
    color: var(--muted-foreground);
    font-size: 0.93rem;
}

/* -------------------------------------------------
   FORMS
------------------------------------------------- */

.form-label-custom {
    margin-bottom: 0.45rem;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
}

.form-control-custom,
.form-select-custom {
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-sm);
}

.form-select-custom {
    appearance: none;
    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--muted-foreground) 50%
        ),
        linear-gradient(
            135deg,
            var(--muted-foreground) 50%,
            transparent 50%
        );
    background-position:
        calc(100% - 17px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.form-select-custom option {
    background: var(--surface);
    color: var(--foreground);
}

.field-error {
    margin: 0.45rem 0 0;
    color: #ff9188;
    font-size: 1rem;
}

.field-help {
    margin: 0.45rem 0 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* -------------------------------------------------
   FAQ
------------------------------------------------- */

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    border: 0;
    background: transparent;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
}

.faq-button i {
    color: var(--coral);
    transition: transform var(--transition);
}

.faq-button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.35rem;
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* -------------------------------------------------
   FINAL CTA
------------------------------------------------- */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border: 1px solid
        rgba(255, 111, 105, 0.25);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255, 111, 105, 0.11),
            var(--surface) 58%
        );
    text-align: center;
}

.final-cta::after {
    position: absolute;
    right: -170px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        rgba(255, 111, 105, 0.09);
    filter: blur(40px);
    content: "";
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

/* -------------------------------------------------
   FOOTER
------------------------------------------------- */

footer {
    margin-top: 2rem;
    padding-top: 4.5rem;
    border-top: 1px solid var(--border);
    background:
        rgba(5, 9, 15, 0.42);
}

.footer-grid {
    margin: 0 auto;
}

.brand-name {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-heading {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-family:
        "Mona Sans",
        "Inter Tight",
        sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.footer-link {
    color: var(--muted-foreground);
    font-size: 1rem;
    text-decoration: none;
}

.footer-link:hover,
.footer-link[aria-current="page"] {
    color: var(--foreground);
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* -------------------------------------------------
   LOADING
------------------------------------------------- */

.button-spinner {
    display: none;
}

.is-loading .button-spinner {
    display: inline-block;
}

.is-loading .button-label {
    opacity: 0.78;
}

.spinner-custom {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid
        rgba(255, 255, 255, 0.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation:
        spinner-custom
        0.7s linear infinite;
}

@keyframes spinner-custom {
    to {
        transform: rotate(360deg);
    }
}

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */

@media (max-width: 991.98px) {
    .navbar-x-height {
        min-height: 62px;
    }

    .navbar-sticky {
        background: rgba(8, 13, 22, 0.96);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.offcanvas-open .navbar-sticky {
        position: static;
    }

    .offcanvas {
        width: min(360px, 88vw) !important;
        height: 100dvh;
        max-height: 100dvh;
    }

    .offcanvas-body {
        display: flex;
        min-height: 0;
        overflow-y: auto;
        flex-direction: column;
        padding: 0.9rem;
        overscroll-behavior: contain;
    }

    .offcanvas-body .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .offcanvas-body .nav-item {
        width: 100%;
    }

    .offcanvas-body .nav-link-custom {
        width: 100%;
        min-height: 40px;
        justify-content: flex-start;
        padding: 0.42rem 0.55rem !important;
        font-size: 12px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .offcanvas-body .nav-link-custom.active::after {
        display: none;
    }

    .offcanvas-body .btn-nav {
        min-height: 40px;
        margin-top: 0.55rem;
        padding: 0.62rem 0.8rem !important;
        justify-content: center;
        font-size: 12px;
        white-space: nowrap;
    }

    .offcanvas-body .lang-toggle {
        margin-top: 0.7rem;
        margin-right: 0 !important;
    }

    .pt-hero {
        padding-top: 2.75rem;
    }

    .hero-title {
        font-size:
            clamp(2.25rem, 8vw, 3.6rem);
        line-height: 1.03;
    }

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


    .section-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    body {
        font-size: 15px;
    }

    .navbar-brand {
        max-width: calc(100vw - 82px);
        margin-right: 0.75rem;
    }

    .brand-logo {
        max-width: 132px;
        height: 32px;
    }

    .navbar-toggler {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .pt-hero {
        padding-top: 2.35rem;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size:
            clamp(2rem, 10.5vw, 2.95rem);
        line-height: 1.06;
        text-wrap: balance;
    }

    .hero-subtitle {
        margin-top: 1rem !important;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-form-shell {
        margin-top: 1.5rem;
        padding: 0.55rem;
        border-radius: var(--radius);
    }

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

    .scan-mode-label {
        min-height: 58px;
        gap: 0.6rem;
        padding: 0.7rem;
    }

    .scan-mode-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .scan-mode-title,
    .scan-mode-description {
        font-size: 0.9rem;
        line-height: 1.25;
    }

    .hero-url-row {
        flex-direction: column;
    }

    .hero-submit {
        width: 100%;
        min-height: 50px;
    }

    .hero-url-input {
        min-height: 50px;
        font-size: 0.95rem;
    }

    .scan-policy-bar,
    .hero-trust-row {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .scan-policy-item,
    .hero-trust-item {
        width: 100%;
    }

    .report-preview-body {
        padding: 1.2rem;
    }

    .report-preview-header {
        flex-direction: column;
    }

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

    .report-score {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
        font-size: 1.7rem;
    }

    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size:
            clamp(1.75rem, 8vw, 2.45rem);
        line-height: 1.12;
    }

    .text-section {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .pricing-card {
        padding: 1.4rem;
    }


    .final-cta {
        padding: 3rem 1.15rem;
    }

    footer {
        padding-top: 3.5rem;
    }
}

@media (max-width: 479.98px) {
    .brand-mark {
        max-width: calc(100vw - 88px);
        overflow: hidden;
        font-size: 0.98rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-title {
        font-size: clamp(1.85rem, 9.5vw, 2.35rem);
    }

    .badge-pill-coral {
        padding: 0.45rem 0.6rem;
    }

    .text-badge {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .scan-mode-description {
        font-size: 0.85rem;
    }

    .browser-address {
        display: none;
    }

    .report-score-wrap {
        align-items: flex-start;
    }

    .pricing-price strong {
        font-size: 2.35rem;
    }
}

@media (max-width: 991.98px) {
    .professional-home-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
