.profile-picture {
    /* make a square container */
    width: 150px;
    height: 150px;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;

    margin-top: 10px;
}

.client-icon {
    /* make a square container */
    width: 150px;
    height: 150px;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 10%;

    margin-top: 10px;
}

.small-client-icon {
    /* make a square container */
    width: 40px;
    height: 40px;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 10%;

    margin-top: 10px;
}

.small-profile-picture {
    /* make a square container */
    width: 60px;
    height: 60px;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;

    margin-top: 10px;
}

/* highlighted table row */
.highlight-row {
    border: solid #5675E2;
}

.arrow {
    width: 20px;
}

em {
    font-style: normal;
    background-color: #FFFF00;
}

.small-text {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0px;
}

.copy-btn {
    font-size: 0.6rem;
    line-height: 0.75;
}

.cursor {
    cursor: pointer;
}

/*Left border for alert zone*/
.alert-primary {
    border-left: 5px #467fcf solid;
}

.alert-info {
    border-left: 5px cadetblue solid;
}

.alert-danger {
    border-left: 5px #6b1110 solid;
}

.alert-danger::before {
    content: "⚠️";
}

.dns-record {
    border: 1px dotted #E3156A;
}

/**
 * Form Validation Errors
 */
.error {
    border-color: red;
}

.error-message {
    color: red;
    font-style: italic;
    margin-bottom: 1em;
}

.footer-item {
    padding-left: 0 !important;
    font-size: 14px;
}

.footer-list-group {
    list-style: none;
    padding-left: 0;
}

.subheader{
    font-size: .625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.6;
    color: #656d77;
}


.disabled-content {
    pointer-events: none;
    opacity: 0.4;
}

/* Parsley CSS */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    color: #468847;
    background-color: #DFF0D8;
    border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;
    color: #B94A48;

    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
    opacity: 1;
}
/* END Parsley CSS */

.domain_detail_content {
    font-size: 15px;
}

/* Only show the help button on desktop */
@media only screen and (max-width: 500px) {
    #help-btn {
        display: none;
    }
}

@media only screen and (min-width: 500px) {
    #help-btn {
        display: flex;
    }

    #help-menu-item {
        display: none;
    }
}

.proton-button {
    border-color:#6d4aff;
    background-color:white;
    color:#6d4aff;
}
.proton-button:hover {
    background-color: #1b1340;
}

/* CSS technique for a horizontal line with words in the middle */
.middle-line {
  display: flex;
  flex-direction: row;
}
.middle-line:before, .middle-line:after{
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.middle-line:before {
  margin-right: 10px
}
.middle-line:after {
  margin-left: 10px
}

.italic {
    font-style: italic;
}

/* dashed outline to indicate droppable area */
.dashed-outline {
    outline: 4px dashed gray;
}

:root {
    --brand-050: #f3f8ff;
    --brand-100: #e2efff;
    --brand-200: #c9e0ff;
    --brand-300: #9ec7ff;
    --brand-400: #63a8ff;
    --brand-500: #2d7ff9;
    --brand-600: #165fd1;
    --brand-700: #0f4294;
    --brand-800: #0a2c61;
    --brand-900: #071a39;
    --brand-ink: #0d2340;
    --brand-muted: #59779f;
    --brand-line: rgba(22, 95, 209, 0.16);
    --brand-surface: rgba(255, 255, 255, 0.86);
    --brand-shadow: 0 24px 80px rgba(9, 38, 83, 0.15);
}

body.public-page,
body.auth-page,
body.dashboard-page {
    color: var(--brand-ink);
}

body.public-page {
    background:
        radial-gradient(circle at top left, rgba(99, 168, 255, 0.28), transparent 36%),
        radial-gradient(circle at top right, rgba(45, 127, 249, 0.24), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 52%, #f6fbff 100%);
}

body.auth-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(99, 168, 255, 0.32), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(22, 95, 209, 0.28), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #edf5ff 50%, #f4f9ff 100%);
}

body.dashboard-page {
    background:
        linear-gradient(180deg, rgba(231, 241, 255, 0.85) 0%, rgba(245, 249, 255, 0.92) 16rem, #f7faff 16rem, #f7faff 100%);
}

body.public-page .page,
body.auth-page .page,
body.dashboard-page .page {
    min-height: 100vh;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--brand-500), #49a0ff);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(45, 127, 249, 0.22);
}

.btn-outline-primary {
    color: var(--brand-600);
    border-color: rgba(22, 95, 209, 0.28);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: white;
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.form-control:focus,
.custom-select:focus {
    border-color: rgba(45, 127, 249, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(45, 127, 249, 0.12);
}

.card {
    border: 1px solid rgba(22, 95, 209, 0.09);
    box-shadow: 0 18px 55px rgba(13, 35, 64, 0.08);
}

.subheader {
    color: var(--brand-muted);
}

.header,
.header.collapse {
    position: relative;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(22, 95, 209, 0.08);
}

.header .dropdown-menu {
    z-index: 1050;
}

.header .nav-link,
.header .nav-item a,
.header .text-default {
    color: var(--brand-ink) !important;
}

.header .avatar.avatar-blue {
    background: linear-gradient(135deg, var(--brand-500), #6db8ff);
}

.dashboard-shell .btn-success,
.dashboard-shell .btn-success:hover,
.dashboard-shell .btn-success:focus {
    background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
    border-color: transparent;
}

.dashboard-container {
    position: relative;
    z-index: 1;
    padding-top: 0.75rem;
}

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(7, 26, 57, 0.94), rgba(22, 95, 209, 0.9)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    box-shadow: var(--brand-shadow);
    color: white;
}

.dashboard-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.dashboard-hero__text {
    max-width: 38rem;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.dashboard-hero__metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-hero__metric {
    min-width: 7rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-hero__metric-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
}

.dashboard-hero__metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-shell {
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4rem;
}

.auth-shell__row {
    gap: 1.5rem;
}

.auth-brand-panel,
.auth-form-panel {
    border-radius: 1.75rem;
}

.auth-brand-panel {
    height: 100%;
    padding: 2.5rem;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 30%),
        linear-gradient(160deg, var(--brand-800), var(--brand-600) 58%, #52a7ff 110%);
    box-shadow: var(--brand-shadow);
}

.auth-brand-panel__logo img,
.auth-mobile-logo {
    height: 24px;
}

.auth-brand-panel__eyebrow {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}

.auth-brand-panel__title {
    margin-top: 0.9rem;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    line-height: 1.02;
}

.auth-brand-panel__copy {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.auth-brand-panel__list {
    margin-top: 2rem;
}

.auth-brand-panel__item {
    margin-bottom: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
}

.auth-form-panel {
    padding: 0.75rem 0;
}

.auth-copy-block {
    margin-bottom: 1rem;
}

.auth-copy-block__eyebrow {
    margin-bottom: 0.5rem;
    color: var(--brand-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.74rem;
    font-weight: 700;
}

.auth-copy-block__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.05;
}

.auth-copy-block__text {
    margin: 0.8rem 0 0;
    color: var(--brand-muted);
    font-size: 1rem;
}

.auth-card {
    overflow: hidden;
    border: 1px solid rgba(22, 95, 209, 0.12);
    border-radius: 1.5rem;
    background: var(--brand-surface);
    backdrop-filter: blur(10px);
    box-shadow: var(--brand-shadow);
}

.auth-card__title {
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.auth-submit {
    min-height: 3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.auth-secondary-link {
    color: var(--brand-muted) !important;
}

.auth-secondary-link a,
.auth-copy-block a,
.public-home a:not(.btn) {
    color: var(--brand-600);
}

.public-home {
    padding-top: 1.5rem;
}

.public-home__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
}

.public-home__brand {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 58%;
}

.public-home__brand img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.public-home__nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex: 0 0 auto;
}

.public-home__nav-link--active {
    color: white;
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.public-home__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
    gap: 2rem;
    padding: 4rem 0 2rem;
}

.public-home__panel {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 25%),
        linear-gradient(135deg, #071a39, #0f4294 54%, #57abff 120%);
    color: white;
    box-shadow: var(--brand-shadow);
}

.public-home__eyebrow {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.public-home__title {
    max-width: 12ch;
    margin: 1rem 0 0;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.96;
}

.public-home__copy {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.public-home__actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.public-home__actions .btn-light {
    color: var(--brand-800);
}

.public-home__btn-green,
.public-home__btn-green:hover,
.public-home__btn-green:focus {
    color: white;
    background: linear-gradient(135deg, #1aa466, #33c47f);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(26, 164, 102, 0.28);
}

.public-home__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.public-home__metric {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.public-home__metric strong {
    display: block;
    font-size: 1.4rem;
}

.public-home__metric span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-home__section {
    padding: 2.5rem 0 4rem;
}

.public-home__section-title {
    margin-bottom: 0.8rem;
    font-size: 2rem;
}

.public-home__section-copy {
    max-width: 44rem;
    color: var(--brand-muted);
}

.public-home__visual {
    position: relative;
    min-height: 32rem;
}

.public-home__breach-card {
    position: relative;
    z-index: 4;
    margin-bottom: 1.25rem;
    padding: 1.35rem;
    border: 1px solid rgba(22, 95, 209, 0.14);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(9, 38, 83, 0.08);
}

.public-home__breach-eyebrow {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(22, 95, 209, 0.08);
    color: var(--brand-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-home__breach-title {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.public-home__breach-copy {
    margin: 0.7rem 0 1rem;
    color: var(--brand-muted);
}

.public-home__breach-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.public-home__breach-input {
    width: 100%;
    min-height: 3rem;
    border-radius: 999px;
}

.public-home__breach-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    white-space: nowrap;
}

.public-home__breach-note {
    margin-top: 0.75rem;
    color: var(--brand-muted);
    font-size: 0.85rem;
}

.public-home__mock-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 247, 255, 0.96));
    box-shadow: 0 34px 90px rgba(9, 38, 83, 0.2);
}

.public-home__mock-topbar {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1rem 0.8rem;
    background: rgba(225, 236, 252, 0.9);
}

.public-home__mock-topbar span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: rgba(12, 47, 105, 0.2);
}

.public-home__mock-body {
    display: grid;
    grid-template-columns: 5.8rem minmax(0, 1fr);
}

.public-home__mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    padding: 1.25rem 0.75rem;
    background: linear-gradient(180deg, #0f3c83, #0b2a5b);
}

.public-home__mock-sidebar img {
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 0.5rem;
}

.public-home__mock-nav-item {
    width: 100%;
    padding: 0.75rem 0.35rem;
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.public-home__mock-nav-item--active {
    color: white;
    background: rgba(255, 255, 255, 0.16);
}

.public-home__mock-main {
    padding: 1.25rem;
}

.public-home__mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.public-home__mock-label {
    color: var(--brand-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-home__mock-button {
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-500), #4fb0ff);
    box-shadow: 0 12px 25px rgba(45, 127, 249, 0.24);
}

.public-home__mock-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.public-home__mock-stat,
.public-home__mock-alias-card,
.public-home__workflow,
.public-home__faq-card {
    border: 1px solid rgba(22, 95, 209, 0.1);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(9, 38, 83, 0.08);
}

.public-home__mock-stat {
    padding: 0.95rem 1rem;
}

.public-home__mock-stat span,
.public-home__mock-alias-card span,
.public-home__workflow-step p,
.public-home__faq-card p {
    display: block;
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.public-home__mock-stat strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.5rem;
}

.public-home__mock-aliases {
    display: grid;
    gap: 0.8rem;
}

.public-home__mock-alias-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
}

.public-home__mock-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: white !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    background: linear-gradient(135deg, #0f4294, #2d7ff9);
}

.public-home__mock-chip--soft {
    color: var(--brand-700) !important;
    background: rgba(45, 127, 249, 0.12);
}

.public-home__floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 15rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 45px rgba(9, 38, 83, 0.16);
    backdrop-filter: blur(12px);
}

.public-home__floating-card img {
    width: 2rem;
    height: 2rem;
}

.public-home__floating-card strong {
    display: block;
    font-size: 0.95rem;
}

.public-home__floating-card span {
    display: block;
    margin-top: 0.2rem;
    color: var(--brand-muted);
    font-size: 0.82rem;
}

.public-home__floating-card--left {
    left: -1.75rem;
    bottom: 2.8rem;
}

.public-home__floating-card--right {
    right: -0.8rem;
    top: 9rem;
}

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

.public-home__card {
    padding: 1.4rem;
    border: 1px solid var(--brand-line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 35px rgba(12, 34, 61, 0.06);
}

.public-home__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(45, 127, 249, 0.12), rgba(105, 194, 255, 0.32));
}

.public-home__card-icon--light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(226, 239, 255, 0.95));
}

.public-home__card-icon img {
    width: 1.5rem;
    height: 1.5rem;
}

.public-home__card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.public-home__card p {
    margin: 0;
    color: var(--brand-muted);
}

.public-home__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 1.8rem;
    border-radius: 1.5rem;
    background: white;
    border: 1px solid var(--brand-line);
    box-shadow: 0 14px 35px rgba(12, 34, 61, 0.06);
}

.public-home__cta-copy {
    color: var(--brand-muted);
}

.public-home__pricing-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.public-home__pricing-grid,
.public-pricing-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.public-home__pricing-card,
.public-pricing-page__card {
    position: relative;
    padding: 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(22, 95, 209, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 55px rgba(13, 35, 64, 0.08);
}

.public-home__pricing-card--premium,
.public-pricing-page__card--premium {
    background: linear-gradient(180deg, rgba(13, 35, 64, 0.97), rgba(22, 95, 209, 0.95));
    color: white;
}

.public-home__pricing-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(22, 95, 209, 0.1);
    color: var(--brand-600);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-home__pricing-card--premium .public-home__pricing-kicker,
.public-pricing-page__card--premium .public-home__pricing-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
}

.public-home__pricing-card h3,
.public-pricing-page__header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.public-home__pricing-price,
.public-pricing-page__price {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.public-home__pricing-price span,
.public-pricing-page__price span {
    margin-left: 0.2rem;
    font-size: 1rem;
    font-weight: 600;
}

.public-home__pricing-card p,
.public-pricing-page__billing {
    color: var(--brand-muted);
    margin-bottom: 1.25rem;
}

.public-home__pricing-card--premium p,
.public-pricing-page__card--premium .public-pricing-page__billing {
    color: rgba(255, 255, 255, 0.78);
}

.public-pricing-page__hero {
    grid-template-columns: 1fr;
}

.public-pricing-page__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.public-pricing-page__list {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
}

.public-pricing-page__list li {
    margin-bottom: 0.8rem;
    line-height: 1.55;
}

.public-pricing-page__card--premium .public-pricing-page__list {
    color: rgba(255, 255, 255, 0.92);
}

.public-legal-page__hero {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
}

.public-legal-page__content {
    display: grid;
    gap: 1.5rem;
}

.public-legal-page__card {
    padding: 1.9rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(22, 95, 209, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(13, 35, 64, 0.08);
}

.public-legal-page__section + .public-legal-page__section {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(22, 95, 209, 0.1);
}

.public-legal-page__section h2 {
    margin-bottom: 0.85rem;
    font-size: 1.65rem;
}

.public-legal-page__section h3 {
    margin: 1.1rem 0 0.55rem;
    font-size: 1.05rem;
}

.public-legal-page__section p {
    margin-bottom: 0.85rem;
    line-height: 1.7;
    color: var(--brand-ink);
}

.public-legal-page__section ul {
    margin: 0 0 1rem;
    padding-left: 1.3rem;
}

.public-legal-page__section li {
    margin-bottom: 0.7rem;
    line-height: 1.65;
}

.public-legal-page__note {
    margin-bottom: 0;
    color: var(--brand-muted) !important;
}

.public-legal-page__meta {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.public-legal-page__meta-item {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(242, 248, 255, 0.95);
    border: 1px solid rgba(22, 95, 209, 0.08);
}

.public-legal-page__meta-item strong {
    display: block;
    margin-bottom: 0.35rem;
}

.public-legal-page__meta-item span {
    color: var(--brand-muted);
}

.public-contact-page__hero {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
}

.public-contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: 1.5rem;
}

.public-contact-page__card {
    padding: 1.85rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(22, 95, 209, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(13, 35, 64, 0.08);
}

.public-contact-page__card p:last-child {
    margin-bottom: 0;
}

.public-contact-page__form .form-group {
    margin-bottom: 1rem;
}

.public-contact-page__form textarea.form-control {
    min-height: 11rem;
    resize: vertical;
}

.public-contact-page__eyebrow {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(22, 95, 209, 0.08);
    color: var(--brand-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-contact-page__list {
    margin: 0;
    padding-left: 1.2rem;
}

.public-contact-page__list li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.public-home__workflow {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    padding: 1.8rem;
}

.public-home__workflow-steps {
    display: grid;
    gap: 1rem;
}

.public-home__workflow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: rgba(242, 248, 255, 0.95);
}

.public-home__workflow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
}

.public-home__workflow-step h3,
.public-home__faq-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.public-home__faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.public-home__faq-card {
    padding: 1.35rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: white;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.08);
}

@media only screen and (max-width: 991px) {
    .dashboard-hero,
    .public-home__cta,
    .public-home__hero,
    .public-home__workflow {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-home__pricing-intro {
        display: grid;
        grid-template-columns: 1fr;
    }

    .public-home__hero,
    .public-home__workflow {
        display: grid;
        grid-template-columns: 1fr;
    }

    .public-home__grid,
    .public-home__metrics,
    .public-home__mock-stats,
    .public-home__faq-grid,
    .public-home__pricing-grid,
    .public-pricing-page__grid {
        grid-template-columns: 1fr;
    }

    .public-home__floating-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .auth-shell {
        padding-top: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .public-home__panel,
    .dashboard-hero,
    .auth-brand-panel,
    .auth-card {
        border-radius: 1.25rem;
    }

    .public-home__panel,
    .dashboard-hero {
        padding: 1.6rem;
    }

    .auth-form-panel {
        padding: 0;
    }

    .public-home__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-home__brand {
        width: 100%;
        max-width: 100%;
    }

    .public-home__nav-links,
    .public-home__actions {
        width: 100%;
    }

    .public-home__breach-form {
        flex-direction: column;
        align-items: stretch;
    }

    .public-home__pricing-intro .btn {
        width: 100%;
    }

    .public-home__mock-body {
        grid-template-columns: 1fr;
    }

    .public-home__mock-sidebar {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 1rem;
    }

    .public-home__mock-sidebar img {
        display: none;
    }

    .public-home__mock-nav-item {
        font-size: 0.68rem;
    }

    .public-home__nav-links .btn,
    .public-home__actions .btn,
    .public-home__breach-button {
        flex: 1 1 auto;
    }

    .public-pricing-page__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-legal-page__meta {
        grid-template-columns: 1fr;
    }

    .public-contact-page__grid {
        grid-template-columns: 1fr;
    }

    .public-home__mock-header,
    .public-home__mock-alias-card {
        align-items: flex-start;
        flex-direction: column;
    }
}