:root {
    --ink: #101629;
    --ink-soft: #4d5872;
    --ink-muted: #727c92;
    --navy: #12152b;
    --navy-deep: #0a0c1b;
    --purple: #6c5ce7;
    --purple-dark: #5544d3;
    --purple-pale: #f0edff;
    --violet: #8f7cf6;
    --blue: #2878dc;
    --green: #138a60;
    --amber: #b46a08;
    --surface: #ffffff;
    --surface-soft: #f7f8fc;
    --line: #e5e8f1;
    --line-strong: #d8dce8;
    --shadow-sm: 0 8px 24px rgba(25, 28, 57, 0.06);
    --shadow-md: 0 18px 50px rgba(25, 28, 57, 0.1);
    --shadow-lg: 0 30px 90px rgba(21, 18, 54, 0.16);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --container: 1360px;
    --content-measure: 72ch;
    --touch-target: 44px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font-size: 15px;
}

h1,
h2,
h3,
.brand {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

svg {
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 840px;
}

.centered {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    left: 20px;
    top: -100px;
    background: var(--ink);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 3px solid rgba(108, 92, 231, 0.38);
    outline-offset: 3px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.7px;
    color: var(--ink);
}

.brand > span:last-child > span {
    color: var(--purple);
}

.brand-mark {
    position: relative;
    display: inline-flex;
    width: 31px;
    height: 31px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--purple), #8d79ff);
    box-shadow: 0 7px 16px rgba(108, 92, 231, 0.26);
    align-items: center;
    justify-content: center;
    gap: 2px;
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.brand-mark span {
    z-index: 1;
    width: 3px;
    border-radius: 4px;
    background: white;
}

.brand-mark span:nth-child(1) {
    height: 7px;
}

.brand-mark span:nth-child(2) {
    height: 13px;
}

.brand-mark span:nth-child(3) {
    height: 9px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 76px;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(229, 232, 241, 0.75);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 9px 28px rgba(15, 20, 44, 0.06);
}

.development-notice {
    border-bottom: 1px solid rgba(108, 92, 231, 0.16);
    background:
        linear-gradient(90deg, rgba(108, 92, 231, 0.1), rgba(40, 120, 220, 0.08)),
        #fbfaff;
    color: #343a55;
}

.development-notice-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-block: 10px;
}

.development-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.development-notice p strong {
    color: var(--ink);
}

.development-badge {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--purple);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.development-notice a {
    flex: 0 0 auto;
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(85, 68, 211, 0.32);
    text-underline-offset: 3px;
}

.development-notice a:hover {
    text-decoration-color: currentColor;
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #424b62;
    font-weight: 600;
}

.site-nav > a {
    transition: color 160ms ease;
}

@media (max-width: 760px) {
    .development-notice-inner {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 9px 10px;
        flex-wrap: wrap;
    }

    .development-notice p {
        flex: 1 1 calc(100% - 132px);
        min-width: 190px;
    }

    .development-notice a {
        margin-left: 132px;
    }
}

@media (max-width: 460px) {
    .development-notice-inner {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .development-notice p {
        grid-column: 1 / -1;
    }

    .development-notice a {
        grid-column: 1 / -1;
        margin-left: 0;
    }
}

.site-nav > a:hover,
.nav-login:hover {
    color: var(--purple);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 4px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    border-radius: 4px;
    background: var(--ink);
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-small {
    min-height: 40px;
    padding: 9px 16px;
}

.button-large {
    min-height: 51px;
    padding: 14px 23px;
}

.button-full {
    width: 100%;
}

.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--purple), #7964ed);
    box-shadow: 0 10px 23px rgba(108, 92, 231, 0.22);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--purple-dark), #6b56e1);
    box-shadow: 0 13px 28px rgba(108, 92, 231, 0.29);
}

.button-secondary,
.button-ghost {
    color: var(--ink);
    background: white;
    border-color: var(--line-strong);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: #bbb5ed;
    background: #fbfaff;
}

.button-dark {
    color: white;
    background: var(--navy);
    box-shadow: 0 12px 25px rgba(18, 21, 43, 0.18);
}

.button-dark:hover {
    background: #202544;
}

.button-white {
    color: var(--navy);
    background: white;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.button-outline-light {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 88px;
    background:
        radial-gradient(circle at 80% 30%, rgba(108, 92, 231, 0.08), transparent 30%),
        linear-gradient(180deg, #fdfdff 0%, #f8f7ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image: linear-gradient(rgba(93, 81, 174, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(93, 81, 174, 0.07) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;
    right: -200px;
    top: -200px;
    background: rgba(151, 132, 255, 0.13);
}

.hero-glow-two {
    width: 310px;
    height: 310px;
    left: -180px;
    bottom: -150px;
    background: rgba(70, 149, 234, 0.09);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 19px;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.eyebrow-light {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--purple-pale);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 5px rgba(108, 92, 231, 0.1);
}

.hero-copy h1 {
    max-width: 610px;
    margin-bottom: 24px;
    font-size: clamp(43px, 4.7vw, 66px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.hero-copy h1 span {
    color: var(--purple);
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 31px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 24px;
    color: #5d667a;
    font-size: 12px;
    font-weight: 700;
}

.hero-proof span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-proof svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-product {
    position: relative;
    min-width: 0;
    perspective: 1200px;
}

.product-window {
    overflow: hidden;
    border: 1px solid rgba(101, 88, 181, 0.2);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-2deg) rotateX(1deg);
}

.window-top {
    height: 43px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #ececf3;
    background: #fbfbfd;
    color: #7b8292;
    font-size: 9px;
    font-weight: 700;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d9dce5;
}

.live-pill {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #e9f8f1;
    color: var(--green);
}

.live-pill i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.product-body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 53px 1fr;
}

.product-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 19px;
    padding-top: 17px;
    background: #15172f;
}

.mini-logo {
    display: grid;
    width: 24px;
    height: 24px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: 7px;
    color: white;
    background: var(--purple);
    font: 800 10px "Plus Jakarta Sans";
}

.product-sidebar > span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
}

.product-sidebar > span.active {
    background: var(--violet);
    box-shadow: 0 0 0 7px rgba(143, 124, 246, 0.12);
}

.product-content {
    min-width: 0;
    padding: 25px 22px 23px;
    background: #f7f8fc;
}

.preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.preview-heading div {
    display: flex;
    flex-direction: column;
}

.preview-heading small,
.preview-heading strong {
    line-height: 1.35;
}

.preview-heading small {
    color: #9298a8;
    font-size: 8px;
}

.preview-heading strong {
    font-size: 14px;
}

.preview-button {
    padding: 7px 10px;
    border-radius: 7px;
    color: white;
    background: var(--purple);
    font-size: 8px;
    font-weight: 700;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.metric-row > div {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 13px;
    border: 1px solid #e9eaf0;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(34, 40, 71, 0.03);
}

.metric-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 6px;
    font-size: 9px;
    font-style: normal;
}

.metric-icon.purple {
    color: var(--purple);
    background: var(--purple-pale);
}

.metric-icon.green {
    color: var(--green);
    background: #e9f7f1;
}

.metric-icon.amber {
    color: var(--amber);
    background: #fff3dc;
}

.metric-row small {
    overflow: hidden;
    margin-bottom: 6px;
    color: #858c9b;
    font-size: 7px;
    white-space: nowrap;
}

.metric-row strong {
    font-size: 18px;
    line-height: 1.2;
}

.metric-row em {
    margin-top: 5px;
    color: var(--green);
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
}

.preview-lower {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 10px;
    margin-top: 11px;
}

.chart-card,
.activity-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e9eaf0;
    border-radius: 10px;
    background: white;
}

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

.card-label strong {
    font-size: 9px;
}

.card-label span {
    color: #9399a8;
    font-size: 7px;
}

.bar-chart {
    height: 116px;
    display: flex;
    align-items: end;
    gap: 8px;
    margin-top: 13px;
    padding: 0 6px;
    border-bottom: 1px solid #eceef3;
    background: repeating-linear-gradient(to bottom, #fff 0, #fff 28px, #f2f3f7 29px);
}

.bar-chart span {
    height: var(--h);
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, #6c5ce7, #9a8cff);
    opacity: 0.9;
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    padding-top: 7px;
    color: #9aa0af;
    font-size: 6px;
}

.health-score {
    margin-top: 18px;
    text-align: center;
}

.health-score span {
    font: 800 26px "Plus Jakarta Sans";
}

.health-score small {
    color: #9ba1ae;
    font-size: 7px;
}

.health-line {
    height: 5px;
    margin: 8px 0 15px;
    overflow: hidden;
    border-radius: 5px;
    background: #edf0f4;
}

.health-line i {
    display: block;
    width: 98%;
    height: 100%;
    background: linear-gradient(to right, #41b88a, #63d4a8);
}

.health-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
}

.health-item .check {
    display: grid;
    width: 15px;
    height: 15px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: #e8f8f1;
    font-size: 7px;
}

.health-item div {
    display: flex;
    flex-direction: column;
}

.health-item strong {
    font-size: 7px;
}

.health-item small {
    color: #9299a8;
    font-size: 6px;
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(108, 92, 231, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 35px rgba(28, 25, 63, 0.13);
}

.floating-card-left {
    left: -28px;
    bottom: 38px;
}

.floating-card-right {
    right: -27px;
    top: 71px;
}

.floating-card > div:not(.avatar-stack) {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 9px;
}

.floating-card small {
    color: #8a91a2;
    font-size: 7px;
}

.float-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: #e7f8f0;
    font-size: 11px;
    font-weight: 800;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    width: 26px;
    height: 26px;
    margin-left: -7px;
    place-items: center;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    background: #5f6f91;
    font-size: 6px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: #7764e5;
}

.avatar-stack span:last-child {
    background: #2eaf81;
}

.trust-strip {
    padding: 28px 0;
    border-top: 1px solid #efeff6;
    border-bottom: 1px solid #e9eaf2;
    background: white;
}

.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.trust-strip p {
    max-width: 250px;
    margin: 0;
    color: #737b90;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 4vw, 52px);
    color: #747b8b;
    font-size: 11px;
}

.trust-items span {
    white-space: nowrap;
}

.trust-items strong {
    color: #3c455d;
    font-weight: 800;
}

.section {
    padding: 104px 0;
}

.section-heading {
    max-width: 730px;
    margin: 0 auto 53px;
}

.section-heading h2,
.split-heading h2,
.domain-copy h2 {
    margin-bottom: 17px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -1.8px;
}

.section-heading p,
.split-heading > p,
.domain-copy > p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.platform-section {
    background: #fff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
}

.workflow-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    padding: 29px 23px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workflow-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    transform: scaleX(0);
    background: linear-gradient(to right, var(--purple), var(--violet));
    transition: transform 180ms ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: #cfc9f6;
    box-shadow: var(--shadow-md);
}

.workflow-card:hover::after {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 21px;
    color: #cdd1dd;
    font: 700 11px "Plus Jakarta Sans";
}

.feature-icon,
.solution-icon,
.stat-icon {
    display: grid;
    place-items: center;
    color: var(--purple);
    background: var(--purple-pale);
}

.feature-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 25px;
    border-radius: 13px;
}

.feature-icon svg,
.solution-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
    letter-spacing: -0.4px;
}

.workflow-card p {
    min-height: 70px;
    margin-bottom: 14px;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.65;
}

.workflow-card ul,
.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.workflow-card li {
    position: relative;
    margin-top: 8px;
    padding-left: 13px;
    color: #5d667c;
    font-size: 10px;
    font-weight: 600;
}

.workflow-card li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
}

.solutions-section {
    background: var(--surface-soft);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 46px;
}

.split-heading h2 {
    max-width: 680px;
    margin-bottom: 0;
}

.split-heading > p {
    margin-bottom: 4px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 12px 35px rgba(31, 34, 68, 0.04);
}

.solution-featured {
    grid-row: span 2;
    justify-content: space-between;
    min-height: 678px;
    color: white;
    border: 0;
    background: linear-gradient(155deg, #1a1d3b 0%, #111329 72%);
    box-shadow: 0 23px 55px rgba(14, 16, 37, 0.17);
}

.solution-visual {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 17px;
    background: radial-gradient(circle at center, rgba(117, 99, 237, 0.2), transparent 44%), rgba(255, 255, 255, 0.025);
}

.visual-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    border: 1px solid rgba(154, 140, 255, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 190px;
    height: 190px;
}

.orbit-two {
    width: 300px;
    height: 300px;
}

.visual-center {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 23px;
    background: linear-gradient(145deg, #7663ed, #5947d1);
    box-shadow: 0 20px 40px rgba(71, 52, 186, 0.4);
    transform: translate(-50%, -50%) rotate(-6deg);
}

.visual-center svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visual-tag {
    position: absolute;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e4ff;
    background: rgba(255, 255, 255, 0.07);
    font-size: 9px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.tag-one {
    top: 48px;
    left: 31px;
}

.tag-two {
    top: 66px;
    right: 25px;
}

.tag-three {
    right: 69px;
    bottom: 36px;
}

.card-kicker {
    display: block;
    margin-bottom: 11px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.solution-featured .card-kicker {
    color: #a99afc;
}

.solution-card h3 {
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -0.8px;
}

.solution-featured h3 {
    max-width: 510px;
    font-size: 31px;
}

.solution-card p {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.solution-featured p {
    max-width: 510px;
    color: #aeb4c8;
}

.solution-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    border-radius: 14px;
}

.purple-soft {
    color: var(--purple) !important;
    background: var(--purple-pale) !important;
}

.blue-soft {
    color: var(--blue) !important;
    background: #eaf3ff !important;
}

.green-soft {
    color: var(--green) !important;
    background: #e7f8f1 !important;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 800;
}

.solution-featured .text-link {
    color: #afa1ff;
}

.text-link span {
    transition: transform 150ms ease;
}

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

.domain-section {
    overflow: hidden;
    background: white;
}

.domain-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 95px;
}

.domain-copy > p {
    margin-bottom: 30px;
}

.domain-points {
    display: grid;
    gap: 19px;
    margin: 0 0 33px;
}

.domain-points > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.domain-points > div > span {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 11px;
    font-weight: 800;
}

.domain-points > div > div {
    display: flex;
    flex-direction: column;
}

.domain-points strong {
    margin-bottom: 2px;
    font-size: 13px;
}

.domain-points small {
    color: var(--ink-soft);
    font-size: 11px;
}

.dns-card {
    position: relative;
    padding: 29px;
    border: 1px solid #ddd8fa;
    border-radius: var(--radius-lg);
    background: #fbfaff;
    box-shadow: 0 30px 70px rgba(40, 32, 93, 0.11);
}

.dns-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -48px -100px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.11), transparent 62%);
}

.dns-card-top,
.dns-card-top > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dns-card-top > div {
    justify-content: flex-start;
    gap: 11px;
}

.dns-card-top > div > div {
    display: flex;
    flex-direction: column;
}

.domain-favicon {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    border-radius: 11px;
    color: white;
    background: var(--navy);
    font: 800 14px "Plus Jakarta Sans";
}

.dns-card-top strong {
    font-size: 13px;
}

.dns-card-top small {
    color: #8b92a3;
    font-size: 9px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 200px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
}

.status-pending,
.status-verifying {
    color: #8a5b06;
    background: #fff0d2;
}

.status-verified {
    color: #08704c;
    background: #dff7ec;
}

.status-action_required {
    color: #a4413b;
    background: #ffebe9;
}

.setup-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: 23px 0;
}

.setup-progress span {
    height: 4px;
    border-radius: 5px;
    background: #e4e4ec;
}

.setup-progress .done {
    background: var(--green);
}

.setup-progress .active {
    background: var(--purple);
}

.dns-record-list {
    overflow: hidden;
    border: 1px solid #e7e5f2;
    border-radius: 13px;
    background: white;
}

.dns-record {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 11px;
    min-height: 67px;
    padding: 12px 16px;
    border-bottom: 1px solid #edf0f4;
}

.dns-record:last-child {
    border-bottom: 0;
}

.record-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    color: var(--green);
    background: #e9f8f2;
    font-size: 10px;
    font-weight: 800;
}

.dns-record.checking .record-icon {
    background: var(--purple-pale);
}

.dns-record.checking .record-icon i {
    width: 11px;
    height: 11px;
    border: 2px solid #cbc4fa;
    border-top-color: var(--purple);
    border-radius: 50%;
}

.dns-record.muted .record-icon {
    color: #8b92a1;
    background: #f0f1f5;
}

.dns-record > div {
    display: flex;
    flex-direction: column;
}

.dns-record strong {
    font-size: 11px;
}

.dns-record small,
.dns-record > span:last-child {
    color: #8b92a2;
    font-size: 8px;
}

.dns-record.verified > span:last-child {
    color: var(--green);
    font-weight: 700;
}

.dns-record.checking > span:last-child {
    color: var(--purple);
    font-weight: 700;
}

.dns-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #757d90;
    font-size: 9px;
}

.dns-note svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--purple);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.how-section {
    padding-top: 92px;
    background: var(--surface-soft);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--line);
}

.how-grid article {
    min-height: 230px;
    padding: 35px;
    background: white;
}

.how-grid article > span {
    display: grid;
    width: 35px;
    height: 35px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid #d8d3f8;
    border-radius: 50%;
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.how-grid h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.how-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.cta-section {
    padding: 85px 0 100px;
    background: var(--surface-soft);
}

.cta-panel {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 54px 59px;
    border-radius: 26px;
    color: white;
    background: linear-gradient(135deg, #181a36, #111329 65%, #292153);
    box-shadow: 0 28px 60px rgba(13, 15, 36, 0.2);
}

.cta-glow {
    position: absolute;
    right: -70px;
    bottom: -160px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.34);
    filter: blur(20px);
}

.cta-panel > *:not(.cta-glow) {
    position: relative;
    z-index: 1;
}

.cta-panel > div:nth-child(2) {
    max-width: 620px;
}

.cta-panel h2 {
    margin-bottom: 13px;
    font-size: clamp(31px, 4vw, 45px);
    line-height: 1.18;
    letter-spacing: -1.5px;
}

.cta-panel p {
    margin: 0;
    color: #b9bfd0;
}

.cta-panel .card-kicker {
    color: #a99afc;
}

.cta-actions {
    min-width: 210px;
    display: grid;
    gap: 10px;
}

.site-footer {
    padding: 72px 0 28px;
    color: #b8becd;
    background: #0d0f20;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 65px;
}

.brand-light {
    color: white;
}

.footer-brand p {
    max-width: 330px;
    margin: 20px 0 0;
    color: #8e95a8;
    font-size: 12px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid h2 {
    margin-bottom: 9px;
    color: white;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > span {
    color: #939aac;
    font-size: 11px;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #777f92;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.page-hero {
    padding: 94px 0 76px;
    background: linear-gradient(180deg, #fbfaff, #f5f3ff);
}

.page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1.09;
    letter-spacing: -2.5px;
}

.page-hero p {
    color: var(--ink-soft);
    font-size: 17px;
}

.pricing-section {
    background: white;
}

.pricing-grid {
    max-width: 920px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pricing-card {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 41px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pricing-card h2 {
    margin-bottom: 12px;
    font-size: 27px;
}

.pricing-card > p {
    min-height: 72px;
    color: var(--ink-soft);
    font-size: 13px;
}

.pricing-card-dark {
    color: white;
    border: 0;
    background: var(--navy);
    box-shadow: 0 23px 50px rgba(18, 21, 43, 0.2);
}

.pricing-card-dark > p {
    color: #aeb5c8;
}

.pricing-card-dark .card-kicker {
    color: #ae9fff;
}

.price-status {
    margin: 23px 0 28px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
    font: 800 26px "Plus Jakarta Sans";
}

.pricing-card-dark .price-status {
    border-color: rgba(255, 255, 255, 0.12);
}

.check-list {
    display: grid;
    gap: 13px;
    margin-bottom: 31px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: var(--ink-soft);
    font-size: 12px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.pricing-card-dark .check-list li {
    color: #c2c7d5;
}

.pricing-card .button {
    margin-top: auto;
}

.message-stack {
    position: fixed;
    z-index: 90;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
}

.message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 16px;
    border: 1px solid #cbd4e1;
    border-radius: 10px;
    color: #314056;
    background: white;
    box-shadow: var(--shadow-md);
    font-size: 12px;
    font-weight: 700;
}

.message-success {
    color: #095f42;
    border-color: #b9e9d5;
    background: #f0fbf6;
}

.message-error {
    color: #983b36;
    border-color: #f2c8c5;
    background: #fff5f4;
}

.message button {
    padding: 2px 5px;
    color: inherit;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.auth-page .site-footer {
    display: none;
}

.auth-section {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 60px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(108, 92, 231, 0.11), transparent 25%),
        linear-gradient(135deg, #f8f7ff, #fff 55%, #f4f2ff);
}

.auth-grid {
    display: grid;
    grid-template-columns: 0.9fr 0.72fr;
    align-items: center;
    gap: 115px;
    max-width: 1020px;
}

.auth-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 5vw, 59px);
    line-height: 1.08;
    letter-spacing: -2.3px;
}

.auth-copy > p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.auth-benefits {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

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

.auth-benefits > div > span {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 10px;
    font-weight: 800;
}

.auth-benefits > div > div {
    display: flex;
    flex-direction: column;
}

.auth-benefits strong {
    font-size: 13px;
}

.auth-benefits small {
    color: var(--ink-soft);
    font-size: 11px;
}

.auth-card {
    padding: 38px;
    border: 1px solid rgba(204, 199, 237, 0.8);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
}

.auth-brand {
    margin-bottom: 27px;
}

.auth-card h2 {
    margin-bottom: 5px;
    font-size: 25px;
    letter-spacing: -0.8px;
}

.auth-card > p {
    margin-bottom: 27px;
    color: var(--ink-soft);
    font-size: 12px;
}

.auth-card > p a {
    color: var(--purple);
    font-weight: 800;
}

.form-stack {
    display: grid;
    gap: 17px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    margin-bottom: 7px;
    color: #323a50;
    font-size: 11px;
    font-weight: 800;
}

.field input {
    width: 100%;
    min-height: 47px;
    padding: 11px 13px;
    border: 1px solid #d9ddea;
    border-radius: 9px;
    color: var(--ink);
    background: white;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.help-text,
.field-error {
    display: block;
    margin-top: 6px;
    font-size: 9px;
}

.help-text {
    color: #828a9c;
}

.help-text ul {
    padding-left: 17px;
    margin: 5px 0 0;
}

.field-error {
    color: #b13e38;
    font-weight: 700;
}

.form-alert {
    padding: 10px 12px;
    border: 1px solid #f0cac6;
    border-radius: 8px;
    color: #a13f39;
    background: #fff5f4;
    font-size: 10px;
}

.form-alert ul,
.errorlist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.form-terms {
    margin: -3px 0 0;
    color: #8990a0;
    font-size: 9px;
    text-align: center;
}

.auth-copy blockquote {
    max-width: 440px;
    margin: 40px 0 0;
    padding: 22px 24px;
    border-left: 3px solid var(--purple);
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.7);
}

.auth-copy blockquote p {
    margin-bottom: 8px;
    color: #3e4860;
    font-size: 14px;
    font-weight: 600;
}

.auth-copy blockquote footer {
    color: #7d8495;
    font-size: 10px;
}

/* Dashboard */
.dashboard-page {
    overflow-x: hidden;
    background: #f5f6fa;
}

.dashboard-shell {
    min-height: 100vh;
}

.dashboard-sidebar {
    position: fixed;
    z-index: 60;
    inset: 0 auto 0 0;
    width: 245px;
    display: flex;
    flex-direction: column;
    padding: 24px 18px 17px;
    color: #c7cbd9;
    background: #111329;
}

.dashboard-brand {
    margin: 0 7px 25px;
    color: white;
}

.workspace-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.workspace-switcher > span {
    display: grid;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 8px;
    color: white;
    background: var(--purple);
    font-size: 10px;
    font-weight: 800;
}

.workspace-switcher > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.workspace-switcher strong {
    overflow: hidden;
    color: white;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workspace-switcher small {
    color: #797f96;
    font-size: 8px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav-label {
    margin: 18px 12px 6px;
    color: #62687e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.dashboard-nav a,
.nav-disabled {
    min-height: 41px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border-radius: 8px;
    color: #9fa5b8;
    font-size: 11px;
    font-weight: 700;
}

.dashboard-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-nav a.active {
    color: white;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.25), rgba(108, 92, 231, 0.1));
}

.dashboard-nav a.active::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 25px;
    border-radius: 0 3px 3px 0;
    background: var(--violet);
}

.dashboard-nav svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-disabled {
    color: #61677c;
}

.nav-disabled small {
    margin-left: auto;
    padding: 2px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 7px;
    text-transform: uppercase;
}

.sidebar-bottom {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-bottom a,
.sidebar-bottom button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #848a9e;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.sidebar-bottom a:hover,
.sidebar-bottom button:hover {
    color: white;
}

.sidebar-bottom span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 1px solid #555b70;
    border-radius: 5px;
    font-size: 8px;
}

.dashboard-main {
    min-height: 100vh;
    margin-left: 245px;
}

.dashboard-header {
    position: sticky;
    z-index: 40;
    top: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    border-bottom: 1px solid #e6e8ef;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
}

.dashboard-header-title,
.dashboard-user > div {
    display: flex;
    flex-direction: column;
}

.dashboard-header-title small {
    color: #959bac;
    font-size: 8px;
}

.dashboard-header-title strong {
    font-size: 13px;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 9px;
}

.dashboard-user > span {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 9px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 10px;
    font-weight: 800;
}

.dashboard-user strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-user small {
    max-width: 190px;
    overflow: hidden;
    color: #9097a7;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-menu {
    display: none;
}

.dashboard-content {
    width: min(calc(100% - 60px), 1120px);
    margin: 0 auto;
    padding: 38px 0 60px;
}

.dashboard-messages {
    width: min(calc(100% - 60px), 1120px);
    display: grid;
    gap: 8px;
    margin: 20px auto -5px;
}

.dashboard-welcome {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 29px;
}

.dashboard-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dashboard-welcome h1,
.domain-title h1 {
    margin-bottom: 6px;
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -0.9px;
}

.dashboard-welcome p,
.domain-title p {
    margin: 0;
    color: #7a8294;
    font-size: 11px;
}

.onboarding-panel,
.dashboard-panel,
.help-panel {
    border: 1px solid #e3e6ee;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 18px rgba(31, 36, 68, 0.035);
}

.onboarding-panel {
    padding: 25px;
}

.panel-heading,
.panel-heading > div,
.panel-title-row,
.record-heading,
.record-heading > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-heading > div,
.record-heading > div {
    justify-content: flex-start;
    gap: 13px;
}

.panel-icon {
    display: grid;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 11px;
    color: var(--purple);
    background: var(--purple-pale);
}

.panel-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-heading h2,
.panel-title-row h2,
.record-heading h2,
.help-panel h2,
.next-step-panel h2 {
    margin-bottom: 2px;
    font-size: 14px;
    letter-spacing: -0.25px;
}

.panel-heading p,
.panel-title-row p,
.record-heading p {
    margin: 0;
    color: #858c9d;
    font-size: 9px;
}

.completion-badge {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 8px;
    font-weight: 800;
}

.readiness-bar {
    height: 5px;
    margin: 19px 0 23px;
    overflow: hidden;
    border-radius: 5px;
    background: #eceef3;
}

.readiness-bar span {
    display: block;
    height: 100%;
    min-width: 5%;
    border-radius: inherit;
    background: linear-gradient(to right, var(--purple), #8c78f3);
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.onboarding-steps > * {
    position: relative;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #e7e9f0;
    border-radius: 10px;
    color: inherit;
    background: #fafbfc;
}

.onboarding-steps > *.current {
    border-color: #c8c0f4;
    background: #fbfaff;
}

.onboarding-steps > *.complete {
    border-color: #c8eadc;
    background: #f7fcf9;
}

.onboarding-steps > * > span {
    display: grid;
    width: 23px;
    height: 23px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 7px;
    color: #8b92a3;
    background: #e9ebf0;
    font-size: 8px;
    font-weight: 800;
}

.onboarding-steps > *.current > span {
    color: white;
    background: var(--purple);
}

.onboarding-steps > *.complete > span {
    color: white;
    background: var(--green);
}

.onboarding-steps > * > div {
    display: flex;
    flex-direction: column;
}

.onboarding-steps strong {
    margin-bottom: 3px;
    font-size: 9px;
}

.onboarding-steps small {
    color: #8b92a2;
    font-size: 7px;
    line-height: 1.4;
}

.onboarding-steps i {
    position: absolute;
    top: 15px;
    right: 13px;
    color: #a0a6b4;
    font-size: 7px;
    font-style: normal;
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 13px;
}

.dashboard-stat-grid article {
    padding: 20px;
    border: 1px solid #e3e6ee;
    border-radius: 13px;
    background: white;
}

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

.stat-icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.stat-top small {
    color: #8d94a5;
    font-size: 8px;
    font-weight: 700;
}

.dashboard-stat-grid article > strong {
    display: block;
    margin-top: 13px;
    font: 800 26px "Plus Jakarta Sans";
}

.dashboard-stat-grid article > p {
    margin: 2px 0 0;
    color: #888f9f;
    font-size: 8px;
}

.dashboard-two-column {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 13px;
    margin-top: 13px;
}

.dashboard-panel {
    padding: 23px;
}

.panel-title-row {
    padding-bottom: 17px;
    border-bottom: 1px solid #eceef3;
}

.panel-title-row a {
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.domain-table,
.domain-list {
    display: grid;
}

.domain-table a,
.domain-list a {
    display: grid;
    grid-template-columns: 37px 1fr auto;
    align-items: center;
    gap: 11px;
    min-height: 62px;
    border-bottom: 1px solid #eff0f4;
}

.domain-table a:last-child,
.domain-list a:last-child {
    border-bottom: 0;
}

.domain-table a > div,
.domain-list-name {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.domain-letter {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 10px;
    font-weight: 800;
}

.domain-letter.large {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    font-size: 14px;
}

.domain-table strong,
.domain-list strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.domain-table small,
.domain-list small {
    overflow: hidden;
    color: #9299a8;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-compact {
    min-height: 118px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 13px;
}

.empty-compact > span {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 10px;
    color: #9097a9;
    background: #f0f1f5;
}

.empty-compact strong {
    font-size: 10px;
}

.empty-compact p {
    margin: 2px 0 0;
    color: #8d94a4;
    font-size: 8px;
}

.empty-compact a {
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.help-panel {
    padding: 23px;
    background: linear-gradient(145deg, #fbfaff, #f5f3ff);
}

.help-art {
    position: relative;
    height: 73px;
    margin-bottom: 17px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #211d4a, #5d4ec4);
}

.help-art::before,
.help-art::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.help-art::before {
    width: 100px;
    height: 100px;
    right: -25px;
    top: -45px;
}

.help-art::after {
    width: 65px;
    height: 65px;
    left: -19px;
    bottom: -37px;
}

.help-art span {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 800;
    transform: translate(-50%, -50%);
}

.help-panel p,
.next-step-panel > p {
    margin-bottom: 19px;
    color: #727b90;
    font-size: 10px;
}

.domain-layout {
    display: grid;
    gap: 14px;
}

.add-domain-panel {
    background: linear-gradient(135deg, #fff, #fbfaff);
}

.inline-domain-form {
    margin-top: 20px;
}

.field-with-button {
    display: flex;
    gap: 9px;
}

.field-with-button input {
    flex: 1;
}

.safety-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 19px;
    padding: 13px;
    border-radius: 9px;
    color: #536174;
    background: #f1f8f5;
}

.safety-note svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safety-note strong {
    font-size: 9px;
}

.safety-note p {
    margin: 2px 0 0;
    font-size: 8px;
}

.domain-list a {
    grid-template-columns: 39px 1fr auto 20px;
    min-height: 70px;
}

.row-arrow {
    color: #a2a8b5;
}

.empty-state {
    padding: 50px 20px 35px;
    text-align: center;
}

.empty-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    place-items: center;
    border-radius: 14px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 18px;
}

.empty-state h3 {
    margin-bottom: 4px;
    font-size: 13px;
}

.empty-state p {
    max-width: 370px;
    margin: 0 auto;
    color: #858d9e;
    font-size: 9px;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 21px;
    color: #959cac;
    font-size: 9px;
}

.detail-breadcrumb a:hover {
    color: var(--purple);
}

.detail-breadcrumb strong {
    color: #596276;
}

.domain-detail-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.domain-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.setup-stepper {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px 23px;
    border: 1px solid #e3e6ee;
    border-radius: 13px;
    background: white;
}

.setup-stepper > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.setup-stepper > div > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    color: #8b93a5;
    background: #e9ebf0;
    font-size: 8px;
    font-weight: 800;
}

.setup-stepper > div.active > span {
    color: white;
    background: var(--purple);
}

.setup-stepper > div.complete > span {
    color: white;
    background: var(--green);
}

.setup-stepper > div > div {
    display: flex;
    flex-direction: column;
}

.setup-stepper strong {
    font-size: 8px;
}

.setup-stepper small {
    color: #9299a9;
    font-size: 7px;
}

.setup-stepper > i {
    height: 1px;
    margin: 0 13px;
    background: #e1e4eb;
}

.setup-stepper > i.complete {
    background: #84c9af;
}

.domain-detail-grid {
    display: grid;
    grid-template-columns: 1fr 285px;
    gap: 14px;
}

.record-heading {
    padding-bottom: 19px;
    border-bottom: 1px solid #eceef3;
}

.record-type {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 9px;
    font-weight: 800;
}

.record-verified {
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
}

.record-fields {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 15px 11px;
    margin-top: 19px;
}

.record-fields > div {
    min-width: 0;
}

.record-fields label {
    display: block;
    margin-bottom: 6px;
    color: #767f92;
    font-size: 8px;
    font-weight: 800;
}

.copy-field {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    border: 1px solid #dfe2ea;
    border-radius: 8px;
    background: #fafbfc;
}

.copy-field code {
    min-width: 0;
    overflow: hidden;
    color: #3e485d;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-field button {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 5px;
    color: var(--purple);
    background: var(--purple-pale);
    font-size: 7px;
    font-weight: 800;
    cursor: pointer;
}

.record-help {
    margin-top: 18px;
    padding: 13px;
    border-left: 3px solid var(--purple);
    border-radius: 0 8px 8px 0;
    background: #f7f6ff;
}

.record-help strong {
    font-size: 9px;
}

.record-help p {
    margin: 3px 0 0;
    color: #737c91;
    font-size: 8px;
}

.record-help code {
    color: var(--purple-dark);
}

.verification-action {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 19px;
}

.verification-action small {
    color: #8b92a3;
    font-size: 8px;
}

.next-step-panel {
    align-self: start;
    background: linear-gradient(145deg, #fff, #faf9ff);
}

.panel-icon.muted {
    margin-bottom: 20px;
    color: #8e96a7;
    background: #eff1f5;
}

.next-step-panel .check-list {
    margin-bottom: 20px;
}

.next-step-panel .check-list li {
    font-size: 9px;
}

.locked-note {
    padding: 10px;
    border-radius: 8px;
    color: #7f8798;
    background: #f0f1f4;
    font-size: 8px;
}

/* Email verifier */
.dashboard-nav .nav-new {
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 999px;
    color: #cfc8ff;
    background: rgba(108, 92, 231, 0.2);
    font-size: 7px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tool-heading,
.verifier-input-card,
.verification-result,
.verifier-empty,
.verification-history {
    max-width: 820px;
    margin-inline: auto;
}

.tool-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.tool-heading h1 {
    margin-bottom: 7px;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -1px;
}

.tool-heading > div:first-child > p {
    max-width: 600px;
    margin: 0;
    color: #677187;
    font-size: 13px;
}

.tool-trust-note {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid #dce8e3;
    border-radius: 11px;
    background: #f5fbf8;
}

.tool-trust-note svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tool-trust-note > div {
    display: flex;
    flex-direction: column;
}

.tool-trust-note strong {
    color: #215f4b;
    font-size: 9px;
}

.tool-trust-note small {
    color: #678577;
    font-size: 7px;
}

.verifier-input-card {
    position: relative;
    padding: 25px;
    border: 1px solid #dcd8f5;
    border-radius: 16px;
    background:
        radial-gradient(circle at 90% 0, rgba(108, 92, 231, 0.07), transparent 32%),
        white;
    box-shadow: 0 13px 35px rgba(44, 38, 91, 0.07);
}

.verifier-form,
.verifier-field {
    width: 100%;
}

.verifier-field label {
    font-size: 12px;
}

.verifier-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verifier-input-wrap input {
    min-height: 58px;
    padding: 14px 180px 14px 48px;
    border: 1px solid #d8dbea;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.verifier-input-wrap input::placeholder {
    color: #9ba2b1;
    font-weight: 500;
}

.input-leading-icon {
    position: absolute;
    z-index: 1;
    left: 16px;
    color: #747d91;
    pointer-events: none;
}

.input-leading-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.verifier-submit {
    position: absolute;
    z-index: 2;
    right: 6px;
    min-width: 158px;
    min-height: 46px;
    border-radius: 9px;
}

.verifier-submit:disabled {
    cursor: wait;
    opacity: 0.76;
    transform: none;
}

.verifier-submit > svg {
    width: 17px;
}

.button-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: white;
    border-radius: 50%;
    animation: verifier-spin 700ms linear infinite;
}

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

.verifier-submit.is-loading > svg {
    display: none;
}

@keyframes verifier-spin {
    to {
        transform: rotate(360deg);
    }
}

.verifier-help {
    margin-top: 8px;
    color: #788195;
    font-size: 10px;
}

.verification-result {
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid #e1e4ec;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 34px rgba(31, 36, 68, 0.055);
}

.result-summary {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: flex-start;
    gap: 17px;
    padding: 28px;
    border-bottom: 1px solid #e9ebf1;
    background: linear-gradient(135deg, #fafbfc, #fff);
}

.result-appears_deliverable .result-summary {
    background: linear-gradient(135deg, #f0faf6, #fff 67%);
}

.result-risky .result-summary,
.result-unknown .result-summary {
    background: linear-gradient(135deg, #fff8eb, #fff 67%);
}

.result-cannot_receive .result-summary,
.result-domain_not_found .result-summary,
.result-invalid_syntax .result-summary {
    background: linear-gradient(135deg, #fff3f2, #fff 67%);
}

.result-status-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    color: var(--green);
    background: #dff5eb;
}

.result-risky .result-status-icon,
.result-unknown .result-status-icon {
    color: #9b6408;
    background: #ffedc9;
}

.result-cannot_receive .result-status-icon,
.result-domain_not_found .result-status-icon,
.result-invalid_syntax .result-status-icon {
    color: #a13d37;
    background: #fde4e2;
}

.result-status-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.result-label {
    display: block;
    margin-bottom: 2px;
    color: #7c8497;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.result-summary-copy h2 {
    margin-bottom: 2px;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.result-email {
    margin-bottom: 9px;
    color: var(--purple-dark) !important;
    font-size: 13px !important;
    font-weight: 800;
    word-break: break-all;
}

.result-summary-copy > p:last-child {
    max-width: 540px;
    margin-bottom: 0;
    color: #616b80;
    font-size: 11px;
}

.result-confidence {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    padding: 7px 10px;
    border: 1px solid #e2e4eb;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.75);
}

.result-confidence strong {
    font-size: 9px;
}

.result-confidence small {
    color: #8a91a2;
    font-size: 7px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    padding: 20px 28px;
    border-bottom: 1px solid #eceef3;
}

.signal-grid article {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 62px;
    padding: 10px;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    background: #fbfbfc;
}

.signal-icon {
    display: grid;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
}

.signal-pass .signal-icon {
    color: var(--green);
    background: #e5f7ef;
}

.signal-warn .signal-icon {
    color: #996107;
    background: #ffefce;
}

.signal-fail .signal-icon {
    color: #a8423c;
    background: #fde9e7;
}

.signal-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signal-grid article > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.signal-grid small {
    color: #8991a2;
    font-size: 7px;
}

.signal-grid strong {
    overflow: hidden;
    color: #344056;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verification-detail-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 20px;
    padding: 24px 28px 28px;
}

.verification-facts h3,
.verification-limit h3 {
    margin-bottom: 13px;
    font-size: 12px;
}

.verification-facts dl {
    margin: 0;
    border: 1px solid #e6e8ef;
    border-radius: 10px;
}

.verification-facts dl > div {
    min-height: 42px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 12px;
    padding: 8px 11px;
    border-bottom: 1px solid #eceef3;
}

.verification-facts dl > div:last-child {
    border-bottom: 0;
}

.verification-facts dt {
    color: #7d8598;
    font-size: 8px;
    font-weight: 700;
}

.verification-facts dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: #3f495e;
    font-size: 8px;
    font-weight: 700;
}

.verification-facts dd code {
    display: block;
    overflow: hidden;
    margin-bottom: 2px;
    color: var(--purple-dark);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verification-limit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid #e5e2f5;
    border-radius: 11px;
    background: #f8f7ff;
}

.verification-limit > span {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    color: var(--purple);
    background: white;
}

.verification-limit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.verification-limit p {
    margin: 0;
    color: #5f687d;
    font-size: 9px;
    line-height: 1.65;
}

.verifier-empty {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
    padding: 40px 24px;
    border: 1px dashed #d9dce6;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
}

.verifier-empty-visual {
    position: relative;
    width: 142px;
    height: 100px;
    margin-bottom: 23px;
}

.mail-check {
    position: absolute;
    inset: 12px auto auto 36px;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid #ddd9f6;
    border-radius: 20px;
    color: var(--purple);
    background: white;
    box-shadow: 0 15px 30px rgba(65, 52, 146, 0.11);
    transform: rotate(-3deg);
}

.mail-check > svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mail-check > span {
    position: absolute;
    right: -8px;
    bottom: -8px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    background: var(--green);
}

.mail-check > span svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mail-line {
    position: absolute;
    height: 5px;
    border-radius: 5px;
    background: #e3e0f8;
}

.line-one {
    width: 37px;
    top: 31px;
    left: 0;
}

.line-two {
    width: 28px;
    right: 0;
    bottom: 24px;
}

.verifier-empty h2 {
    margin-bottom: 7px;
    font-size: 16px;
}

.verifier-empty p {
    max-width: 510px;
    margin: 0;
    color: #747d91;
    font-size: 11px;
}

.verification-history {
    margin-top: 16px;
}

.verification-history .panel-title-row > span {
    color: #8991a1;
    font-size: 8px;
}

.history-table-wrap {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.history-table th {
    padding: 12px 10px 8px;
    color: #8a92a3;
    font-size: 7px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.history-table td {
    padding: 12px 10px;
    border-top: 1px solid #eef0f4;
    color: #657086;
    font-size: 8px;
}

.history-table td:first-child {
    min-width: 190px;
}

.history-table td:first-child strong,
.history-table td:first-child small {
    display: block;
}

.history-table td:first-child strong {
    color: #303a50;
    font-size: 9px;
}

.history-table td:first-child small {
    color: #959baa;
    font-size: 7px;
}

.history-status {
    display: inline-flex;
    align-items: center;
    padding: 5px 7px;
    border-radius: 999px;
    color: #485268;
    background: #eef0f4;
    font-size: 7px;
    font-weight: 800;
    white-space: nowrap;
}

.history-appears_deliverable {
    color: #0b6948;
    background: #e2f6ed;
}

.history-risky,
.history-unknown {
    color: #885807;
    background: #fff0d2;
}

.history-cannot_receive,
.history-domain_not_found,
.history-invalid_syntax {
    color: #983f39;
    background: #fde9e7;
}

/* Sending method onboarding */
.sending-choice-page {
    max-width: 860px;
    margin-inline: auto;
}

.sending-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    margin-bottom: 38px;
    color: #8a92a3;
    font-size: 9px;
    font-weight: 700;
}

.sending-progress span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.sending-progress span i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #7f8799;
    background: #e9ebf0;
    font-size: 8px;
    font-style: normal;
}

.sending-progress span.complete {
    color: #347560;
}

.sending-progress span.complete i {
    color: white;
    background: var(--green);
}

.sending-progress span.current {
    color: var(--purple-dark);
}

.sending-progress span.current i {
    color: white;
    background: var(--purple);
}

.sending-progress b {
    height: 1px;
    margin: 0 12px;
    background: #dfe2e9;
}

.sending-choice-heading {
    max-width: 690px;
    margin: 0 auto 27px;
    text-align: center;
}

.sending-choice-heading h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.sending-choice-heading p {
    margin: 0;
    color: #667086;
    font-size: 13px;
}

.sending-choice-form fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.sending-choice-error {
    margin-bottom: 13px;
    padding: 11px 13px;
    border: 1px solid #efc6c3;
    border-radius: 9px;
    color: #983e39;
    background: #fff5f4;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.sending-option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.sending-option {
    position: relative;
    cursor: pointer;
}

.sending-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.sending-option-card {
    min-height: 245px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border: 2px solid #e3e6ed;
    border-radius: 15px;
    background: white;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sending-option:hover .sending-option-card {
    border-color: #cfc9ef;
    box-shadow: 0 12px 28px rgba(50, 42, 108, 0.07);
    transform: translateY(-2px);
}

.sending-option > input:checked + .sending-option-card {
    border-color: var(--purple);
    background: linear-gradient(145deg, #fff, #f8f6ff);
    box-shadow: 0 12px 30px rgba(83, 69, 176, 0.11);
}

.sending-option > input:focus-visible + .sending-option-card {
    outline: 3px solid rgba(108, 92, 231, 0.3);
    outline-offset: 3px;
}

.sending-option-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.sending-option-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 12px;
    color: var(--purple);
    background: var(--purple-pale);
}

.sending-option:nth-child(2) .sending-option-icon {
    color: var(--blue);
    background: #eaf3ff;
}

.sending-option:nth-child(3) .sending-option-icon {
    color: #087658;
    background: #e6f7f1;
}

.sending-option:nth-child(4) .sending-option-icon {
    color: #6c7487;
    background: #eef0f4;
}

.sending-option-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.radio-indicator {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #cbd0dc;
    border-radius: 50%;
    background: white;
    transition: border-color 180ms ease;
}

.radio-indicator i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 180ms ease;
}

.sending-option > input:checked + .sending-option-card .radio-indicator {
    border-color: var(--purple);
}

.sending-option > input:checked + .sending-option-card .radio-indicator i {
    background: var(--purple);
}

.sending-option-badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sending-option-badge.recommended {
    color: var(--purple-dark);
    background: var(--purple-pale);
}

.sending-option-badge.managed {
    color: #17669f;
    background: #e7f3fd;
}

.sending-option-badge.provider {
    color: #13684f;
    background: #e4f5ef;
}

.sending-option-badge.data {
    color: #5d6679;
    background: #eceef2;
}

.sending-option-card > strong {
    margin-bottom: 8px;
    font: 700 16px "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.3px;
}

.sending-option-card > p {
    margin-bottom: 15px;
    color: #626d82;
    font-size: 11px;
    line-height: 1.65;
}

.sending-option-card > small {
    position: relative;
    margin-top: auto;
    padding-left: 18px;
    color: #798295;
    font-size: 9px;
    font-weight: 700;
}

.sending-option-card > small::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 2px;
    width: 7px;
    height: 4px;
    border-bottom: 1.8px solid var(--green);
    border-left: 1.8px solid var(--green);
    transform: rotate(-45deg);
}

.sending-safety-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 15px;
    padding: 15px 17px;
    border: 1px solid #dce7e3;
    border-radius: 11px;
    background: #f5faf8;
}

.sending-safety-note > span {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    color: var(--green);
    background: white;
}

.sending-safety-note svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sending-safety-note strong {
    display: block;
    margin-bottom: 2px;
    color: #285e4d;
    font-size: 10px;
}

.sending-safety-note p {
    margin: 0;
    color: #5f776f;
    font-size: 9px;
}

.sending-choice-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 21px;
}

.dashboard-stat-grid article > .stat-method {
    min-height: 46px;
    display: flex;
    align-items: flex-end;
    font-size: 14px;
    line-height: 1.35;
}

.dashboard-stat-grid article > p a {
    color: var(--purple);
    font-weight: 700;
}

.selected-method-summary {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 3px 4px;
}

.method-summary-icon {
    display: grid;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 12px;
    color: var(--purple);
    background: var(--purple-pale);
}

.method-summary-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.selected-method-summary strong {
    font-size: 12px;
}

.selected-method-summary p {
    max-width: 520px;
    margin: 3px 0 0;
    color: #747d91;
    font-size: 9px;
}

@media (max-width: 1080px) {
    .hero {
        padding-top: 76px;
    }

    .hero-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 30px;
    }

    .hero-copy h1 {
        font-size: 50px;
    }

    .floating-card-right {
        right: -10px;
    }

    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow-card {
        min-height: 300px;
    }

    .domain-grid {
        gap: 55px;
    }

    .auth-grid {
        gap: 70px;
    }
}

@media (max-width: 900px) {
    .site-nav {
        gap: 18px;
        font-size: 13px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero-copy {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-copy .eyebrow {
        justify-content: center;
    }

    .hero-copy h1,
    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-product {
        width: min(100%, 690px);
        margin: 0 auto;
    }

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

    .trust-items {
        width: 100%;
        justify-content: space-between;
    }

    .split-heading,
    .domain-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-heading > p {
        max-width: 650px;
    }

    .domain-copy {
        max-width: 650px;
    }

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

    .footer-grid > div:last-child {
        grid-column: 2;
    }

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 620px;
    }

    .auth-copy {
        text-align: center;
    }

    .auth-benefits {
        max-width: 430px;
        margin-inline: auto;
        text-align: left;
    }

    .auth-copy blockquote {
        margin-inline: auto;
        text-align: left;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 180ms ease;
        box-shadow: 15px 0 50px rgba(5, 7, 18, 0.25);
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .dashboard-menu {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        margin-right: 10px;
        border-radius: 8px;
        background: #f3f4f7;
    }

    .dashboard-menu span {
        width: 17px;
        height: 2px;
        background: var(--ink);
    }

    .dashboard-header-title {
        margin-right: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header {
        height: 68px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 13px 20px 20px;
        border-bottom: 1px solid var(--line);
        background: white;
        box-shadow: var(--shadow-md);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav > a {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #eff0f4;
    }

    .nav-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin: 12px 0 0;
    }

    .nav-login {
        min-height: 43px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 65px 0 70px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 12vw, 51px);
        letter-spacing: -2px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-product {
        width: 110%;
        left: -5%;
    }

    .floating-card-right {
        display: none;
    }

    .floating-card-left {
        left: 7px;
        bottom: -23px;
    }

    .product-body {
        min-height: 300px;
        grid-template-columns: 43px 1fr;
    }

    .product-content {
        padding: 18px 13px;
    }

    .metric-row {
        gap: 5px;
    }

    .metric-row > div {
        padding: 9px;
    }

    .metric-icon {
        display: none;
    }

    .preview-lower {
        grid-template-columns: 1fr;
    }

    .activity-card {
        display: none;
    }

    .trust-strip p {
        max-width: none;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .section {
        padding: 76px 0;
    }

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

    .section-heading h2,
    .split-heading h2,
    .domain-copy h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

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

    .workflow-card {
        min-height: 0;
    }

    .workflow-card p {
        min-height: 0;
    }

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

    .solution-featured {
        min-height: 600px;
    }

    .solution-visual {
        height: 285px;
    }

    .dns-card {
        padding: 18px;
    }

    .dns-card-top {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

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

    .cta-section {
        padding-top: 40px;
    }

    .cta-panel {
        align-items: stretch;
        flex-direction: column;
        padding: 38px 25px;
    }

    .cta-actions {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

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

    .auth-section {
        min-height: calc(100vh - 68px);
        padding: 40px 0;
    }

    .auth-copy h1 {
        font-size: 40px;
    }

    .auth-card {
        padding: 27px 21px;
    }

    .dashboard-header {
        padding: 0 15px;
    }

    .dashboard-header-title small,
    .dashboard-user > div {
        display: none;
    }

    .dashboard-content,
    .dashboard-messages {
        width: calc(100% - 28px);
    }

    .dashboard-content {
        padding-top: 25px;
    }

    .dashboard-welcome {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .onboarding-steps,
    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .onboarding-steps > * {
        min-height: 86px;
        display: grid;
        grid-template-columns: 27px 1fr auto;
        align-items: center;
        gap: 11px;
    }

    .onboarding-steps > * > span {
        margin: 0;
    }

    .onboarding-steps i {
        position: static;
    }

    .dashboard-two-column,
    .domain-detail-grid {
        grid-template-columns: 1fr;
    }

    .field-with-button {
        align-items: stretch;
        flex-direction: column;
    }

    .domain-list a {
        grid-template-columns: 39px 1fr auto;
    }

    .domain-list .status-badge {
        grid-column: 2;
        margin-top: -11px;
        margin-bottom: 10px;
    }

    .domain-list .row-arrow {
        grid-column: 3;
        grid-row: 1;
    }

    .domain-detail-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .setup-stepper {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .setup-stepper > i {
        width: 1px;
        height: 11px;
        margin: -3px 0 -3px 13px;
    }

    .record-fields {
        grid-template-columns: 1fr;
    }

    .record-heading {
        align-items: flex-start;
        gap: 13px;
        flex-direction: column;
    }

    .verification-action {
        align-items: stretch;
        flex-direction: column;
    }

    .tool-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .tool-heading h1 {
        font-size: 27px;
    }

    .tool-trust-note {
        align-self: flex-start;
    }

    .verifier-input-card {
        padding: 17px;
    }

    .verifier-input-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .verifier-input-wrap input {
        min-height: 54px;
        padding: 13px 15px 13px 46px;
    }

    .input-leading-icon {
        top: 17px;
    }

    .verifier-submit {
        position: static;
        width: 100%;
        min-height: 48px;
    }

    .result-summary {
        grid-template-columns: 47px 1fr;
        gap: 13px;
        padding: 20px 17px;
    }

    .result-status-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

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

    .result-confidence {
        grid-column: 2;
        align-items: flex-start;
        justify-self: start;
    }

    .signal-grid {
        grid-template-columns: 1fr 1fr;
        padding: 17px;
    }

    .verification-detail-grid {
        grid-template-columns: 1fr;
        padding: 20px 17px;
    }

    .verification-facts dl > div {
        grid-template-columns: 105px 1fr;
    }

    .verifier-empty {
        min-height: 280px;
    }

    .history-table {
        min-width: 650px;
    }

    .sending-progress {
        grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
        margin-bottom: 29px;
    }

    .sending-progress span {
        font-size: 0;
    }

    .sending-progress span i {
        font-size: 8px;
    }

    .sending-progress b {
        margin-inline: 7px;
    }

    .sending-choice-heading h1 {
        font-size: 29px;
    }

    .sending-option-grid {
        grid-template-columns: 1fr;
    }

    .sending-option-card {
        min-height: 220px;
    }

    .sending-choice-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .sending-choice-actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Independent email verifier */
.verifier-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.verifier-page-heading.compact {
    align-items: center;
}

.verifier-page-heading h1 {
    max-width: 760px;
    margin: 5px 0 8px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.verifier-page-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.credit-balance-card {
    min-width: 190px;
    padding: 17px 19px;
    border: 1px solid #ddd8ff;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f4f1ff);
    box-shadow: 0 10px 28px rgba(82, 66, 178, 0.08);
}

.credit-balance-card > span,
.credit-balance-card > small {
    display: block;
    color: #737b91;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.credit-balance-card > strong {
    display: block;
    margin: 2px 0 -2px;
    color: var(--purple-dark);
    font: 800 30px "Plus Jakarta Sans", sans-serif;
    line-height: 1.1;
}

.credit-balance-card > a {
    display: inline-block;
    margin-top: 9px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
}

.verifier-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
}

.verifier-tabs a {
    padding: 9px 15px;
    border-radius: 8px;
    color: #6e778b;
    font-size: 10px;
    font-weight: 800;
}

.verifier-tabs a.active {
    color: var(--purple-dark);
    background: var(--purple-pale);
}

.verifier-workbench {
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid #dedbea;
    border-radius: 18px;
    background: white;
    box-shadow: 0 15px 45px rgba(32, 28, 75, 0.08);
}

.workbench-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px 16px;
    border-bottom: 1px solid #ebeaf1;
}

.workbench-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workbench-head h2 {
    margin: 0 0 2px;
    font-size: 15px;
}

.workbench-head p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 10px;
}

.workbench-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 11px;
    color: var(--purple);
    background: var(--purple-pale);
}

.workbench-icon svg,
.upload-control svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.no-send-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #cce8de;
    border-radius: 999px;
    color: #26705a;
    background: #f2faf7;
    font-size: 9px;
    font-weight: 800;
}

.no-send-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(19, 138, 96, 0.12);
}

.verifier-batch-form {
    padding: 21px 22px;
}

.verifier-main-field > label,
.batch-name-control label {
    display: block;
    margin-bottom: 7px;
    color: #48536c;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.verifier-main-field textarea {
    width: 100%;
    min-height: 138px;
    resize: vertical;
    padding: 15px 17px;
    border: 1px solid #d9ddea;
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: #fbfbfd;
    font: 500 12px/1.75 "Manrope", sans-serif;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.verifier-main-field textarea:focus,
.batch-name-control input:focus,
.result-filters input:focus,
.result-filters select:focus {
    border-color: #9688ed;
    background: white;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.11);
}

.verifier-field-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 6px;
    color: #8a92a4;
    font-size: 8px;
}

.verifier-field-footer span {
    color: var(--purple-dark);
    font-weight: 800;
}

.verifier-form-row {
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(220px, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin-top: 16px;
}

.upload-control {
    position: relative;
}

.upload-control > label {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px dashed #cfd4e2;
    border-radius: 10px;
    color: var(--purple);
    background: #faf9ff;
    cursor: pointer;
}

.upload-control label span {
    display: flex;
    flex-direction: column;
}

.upload-control label strong {
    color: #4d5670;
    font-size: 9px;
}

.upload-control label small {
    color: #9097a8;
    font-size: 8px;
}

.upload-control input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.batch-name-control input {
    width: 100%;
    min-height: 52px;
    padding: 0 13px;
    border: 1px solid #d9ddea;
    border-radius: 10px;
    outline: none;
    background: #fbfbfd;
    font-size: 10px;
}

.verifier-run-button {
    min-width: 150px;
    min-height: 52px;
}

.workbench-rules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ebeaf1;
    background: #fafafd;
}

.workbench-rules span {
    padding: 11px 16px;
    border-right: 1px solid #ebeaf1;
    color: #7d8598;
    font-size: 8px;
    text-align: center;
}

.workbench-rules span:last-child {
    border-right: 0;
}

.workbench-rules b {
    color: #4a5369;
}

.form-error-summary {
    margin-bottom: 13px;
    padding: 10px 12px;
    border: 1px solid #efcbc7;
    border-radius: 9px;
    color: #923c35;
    background: #fff6f5;
    font-size: 10px;
}

.form-error-summary ul {
    margin: 0;
    padding-left: 18px;
}

.batch-result-panel {
    margin: 18px 0;
}

.verifier-compact-table td > small,
.results-table td > small {
    display: block;
    margin-top: 2px;
    color: #9198a9;
    font-size: 8px;
}

.verifier-compact-table td > a,
.results-table td > a,
.panel-title-row > a {
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.reused-credit {
    color: var(--green);
    font-weight: 800;
}

.result-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 12px 22px;
    border-top: 1px solid #ebeef3;
    color: #7c8598;
    background: #fafbfd;
    font-size: 8px;
}

.result-foot strong {
    color: #4c566c;
}

.verifier-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.7fr);
    gap: 16px;
    margin-top: 18px;
}

.panel-empty-state {
    padding: 38px 20px;
    color: #8a92a4;
    font-size: 10px;
    text-align: center;
}

.verifier-pricing-note {
    padding: 24px;
    color: white;
    background: linear-gradient(145deg, #19182f, #2d285d);
}

.verifier-pricing-note .pricing-paise {
    display: block;
    margin-bottom: 8px;
    color: #c9c0ff;
    font: 800 42px "Plus Jakarta Sans", sans-serif;
    line-height: 1;
}

.verifier-pricing-note .pricing-paise small {
    font-size: 18px;
}

.verifier-pricing-note h2 {
    margin-bottom: 8px;
    font-size: 17px;
}

.verifier-pricing-note p,
.verifier-pricing-note li {
    color: #bbb9ce;
    font-size: 9px;
}

.verifier-pricing-note ul {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 16px 0 20px;
    list-style: none;
}

.verifier-pricing-note li::before {
    content: "✓";
    margin-right: 7px;
    color: #8fe0c3;
}

.public-verifier-hero {
    padding: 76px 0 44px;
    background:
        radial-gradient(circle at 85% 10%, rgba(128, 109, 240, 0.16), transparent 28%),
        linear-gradient(180deg, #f8f7ff, #fff);
}

.public-verifier-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: center;
    gap: 70px;
}

.public-verifier-copy h1 {
    margin: 12px 0 15px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.06;
    letter-spacing: -2.5px;
}

.public-verifier-copy h1 span {
    color: var(--purple);
}

.public-verifier-copy > p {
    max-width: 690px;
    color: #626d83;
    font-size: 14px;
}

.public-verifier-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 23px;
}

.public-verifier-proof span {
    padding: 7px 10px;
    border: 1px solid #e1def2;
    border-radius: 999px;
    color: #5f6680;
    background: white;
    font-size: 9px;
    font-weight: 800;
}

.public-verifier-meter {
    padding: 25px;
    border: 1px solid #dfdaf8;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(59, 45, 128, 0.13);
}

.public-verifier-meter > div:first-child {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.public-verifier-meter span {
    color: #687188;
    font-size: 10px;
    font-weight: 800;
}

.public-verifier-meter strong {
    color: var(--purple-dark);
    font: 800 42px "Plus Jakarta Sans", sans-serif;
    line-height: 1;
}

.public-verifier-meter strong small {
    color: #9b94c6;
    font-size: 15px;
}

.allowance-track {
    overflow: hidden;
    height: 8px;
    margin: 18px 0 10px;
    border-radius: 999px;
    background: #ebe8f7;
}

.allowance-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), #8d7cf0);
}

.public-verifier-meter > small {
    color: #8b91a1;
    font-size: 8px;
}

.public-verifier-body {
    padding: 28px 0 80px;
    background: #f7f8fc;
}

.public-verifier-body .verifier-workbench,
.public-verifier-body .verification-result,
.public-verifier-body .batch-result-panel {
    max-width: 980px;
    margin-inline: auto;
}

.public-recent-checks {
    max-width: 980px;
    margin: 18px auto 0;
}

.verifier-signup-cta {
    max-width: 980px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 18px auto 0;
    padding: 28px 30px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, #17172e, #342d71);
}

.verifier-signup-cta span {
    color: #bcb4f0;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.verifier-signup-cta h2 {
    margin: 4px 0 6px;
    font-size: 20px;
}

.verifier-signup-cta p {
    margin: 0;
    color: #bebdd0;
    font-size: 9px;
}

.result-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.55fr) auto auto;
    align-items: end;
    gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.result-filters label {
    display: block;
    margin-bottom: 5px;
    color: #687188;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.result-filters input,
.result-filters select {
    width: 100%;
    min-height: 40px;
    padding: 0 11px;
    border: 1px solid #d9ddea;
    border-radius: 9px;
    outline: none;
    background: #fbfbfd;
    font-size: 9px;
}

.result-filters > a {
    padding: 10px 4px;
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.result-count-row {
    margin-top: 17px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 17px;
    color: #7c8496;
    font-size: 9px;
}

.pagination a {
    color: var(--purple);
    font-weight: 800;
}

.jobs-panel {
    margin-top: 16px;
}

.job-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.job-card-grid > a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fbfbfd;
}

.job-card-grid strong {
    font-size: 10px;
}

.job-card-grid small {
    color: #858da0;
    font-size: 8px;
}

.job-status {
    align-self: flex-start;
    color: var(--green);
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-back-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
    color: #858da0;
    font-size: 9px;
}

.detail-back-row a {
    color: var(--purple);
    font-weight: 800;
}

.detail-data-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
    gap: 16px;
    margin-top: 16px;
}

.evidence-list {
    margin: 0;
}

.evidence-list > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f4;
    font-size: 9px;
}

.evidence-list dt {
    color: #81899b;
}

.evidence-list dd {
    margin: 0;
    color: #495269;
    font-weight: 700;
}

.evidence-list code {
    display: inline-block;
    margin: 1px 4px 1px 0;
    padding: 3px 5px;
    border-radius: 4px;
    color: #5544b7;
    background: #f1effc;
    font-size: 8px;
}

.evidence-safety > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 13px;
    border-radius: 12px;
    color: var(--green);
    background: #eaf7f2;
    font-size: 22px;
}

.evidence-safety h2 {
    font-size: 16px;
}

.evidence-safety > p {
    color: #747d90;
    font-size: 9px;
}

.evidence-safety > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid #edf0f4;
    font-size: 9px;
}

.job-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
    margin-bottom: 15px;
}

.job-metrics article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
}

.job-metrics span {
    display: block;
    color: #7f8799;
    font-size: 8px;
}

.job-metrics strong {
    display: block;
    margin-top: 3px;
    font: 800 24px "Plus Jakarta Sans", sans-serif;
}

.credit-center-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: 16px;
}

.test-mode-note {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 15px;
    padding: 11px 13px;
    border: 1px solid #f0d8a8;
    border-radius: 9px;
    color: #865710;
    background: #fffaf0;
    font-size: 9px;
}

.package-options ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
}

.package-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #dfe2eb;
    border-radius: 10px;
    color: #566078;
    background: #fbfbfd;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.price-equation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #747c8f;
    background: #f7f8fb;
    font-size: 9px;
}

.price-equation strong {
    color: var(--purple-dark);
    font-size: 14px;
}

.credit-account-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eceef3;
    font-size: 9px;
}

.credit-account-summary > div strong {
    font-size: 14px;
}

.credit-account-summary > p {
    margin: 14px 0 0;
    color: #858da0;
    font-size: 9px;
}

.ledger-panel {
    margin-top: 16px;
}

.ledger-positive {
    color: var(--green);
    font-weight: 800;
}

.ledger-negative {
    color: #b34d45;
    font-weight: 800;
}

.pricing-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card-featured {
    border-color: #afa4ef;
    box-shadow: 0 22px 60px rgba(76, 61, 160, 0.14);
}

@media (max-width: 900px) {
    .public-verifier-hero .container,
    .verifier-lower-grid,
    .detail-data-grid,
    .credit-center-grid {
        grid-template-columns: 1fr;
    }

    .public-verifier-hero .container {
        gap: 32px;
    }

    .verifier-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .verifier-run-button {
        grid-column: 1 / -1;
    }

    .job-card-grid,
    .pricing-grid-three {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .verifier-page-heading,
    .verifier-signup-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .credit-balance-card {
        min-width: 0;
    }

    .verifier-tabs {
        overflow-x: auto;
    }

    .verifier-tabs a {
        flex: 0 0 auto;
    }

    .workbench-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .verifier-batch-form {
        padding: 17px;
    }

    .verifier-form-row,
    .result-filters,
    .package-options ul,
    .job-card-grid,
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }

    .workbench-rules {
        grid-template-columns: 1fr 1fr;
    }

    .workbench-rules span:nth-child(2) {
        border-right: 0;
    }

    .workbench-rules span:nth-child(-n + 2) {
        border-bottom: 1px solid #ebeaf1;
    }

    .public-verifier-hero {
        padding-top: 48px;
    }

    .public-verifier-copy h1 {
        letter-spacing: -1.7px;
    }

    .public-verifier-proof {
        align-items: stretch;
        flex-direction: column;
    }

    .public-verifier-proof span {
        text-align: center;
    }

    .job-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .evidence-list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

/* Readable, wide verifier workspace */
.email-verifier-public-page .public-verifier-body > .container {
    width: min(calc(100% - 64px), 1360px);
}

.email-verifier-public-page .public-verifier-body .verifier-workbench,
.email-verifier-public-page .public-verifier-body .verification-result,
.email-verifier-public-page .public-verifier-body .batch-result-panel,
.email-verifier-public-page .public-recent-checks,
.email-verifier-public-page .verifier-signup-cta {
    max-width: none;
}

.dashboard-content,
.dashboard-messages {
    width: min(calc(100% - 48px), 1360px);
}

.workbench-head {
    padding: 24px 28px 20px;
}

.workbench-head h2 {
    font-size: 18px;
}

.workbench-head p {
    font-size: 14px;
    line-height: 1.55;
}

.no-send-badge {
    padding: 8px 12px;
    font-size: 12px;
}

.verifier-batch-form {
    padding: 26px 28px;
}

.verifier-main-field > label,
.batch-name-control label {
    font-size: 12px;
}

.verifier-main-field textarea {
    min-height: 160px;
    padding: 17px 19px;
    font-size: 15px;
    line-height: 1.65;
}

.verifier-field-footer {
    margin-top: 9px;
    font-size: 12px;
}

.upload-control label strong {
    font-size: 13px;
}

.upload-control label small,
.batch-name-control input {
    font-size: 12px;
}

.workbench-rules span {
    padding: 14px 18px;
    font-size: 12px;
}

.form-error-summary {
    font-size: 14px;
}

.result-summary {
    grid-template-columns: 64px 1fr auto;
    gap: 20px;
    padding: 32px;
}

.result-status-icon {
    width: 60px;
    height: 60px;
}

.result-label {
    margin-bottom: 4px;
    font-size: 11px;
}

.result-summary-copy h2 {
    margin-bottom: 4px;
    font-size: 28px;
}

.result-email {
    margin-bottom: 10px;
    font-size: 16px !important;
}

.result-summary-copy > p:last-child {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.65;
}

.result-confidence {
    padding: 10px 13px;
}

.result-confidence strong {
    font-size: 14px;
}

.result-confidence small {
    font-size: 11px;
}

.signal-grid {
    gap: 12px;
    padding: 24px 32px;
}

.signal-grid article {
    min-height: 76px;
    gap: 12px;
    padding: 14px;
}

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

.signal-grid small {
    font-size: 11px;
}

.signal-grid strong {
    overflow: visible;
    font-size: 13px;
    line-height: 1.4;
    text-overflow: clip;
    white-space: normal;
}

.result-foot {
    gap: 24px;
    padding: 15px 32px;
    font-size: 12px;
}

.public-recent-checks,
.batch-result-panel {
    padding: 28px;
}

.public-verifier-body .panel-title-row h2 {
    font-size: 18px;
}

.public-verifier-body .panel-title-row p {
    font-size: 13px;
    line-height: 1.55;
}

.history-table th {
    padding: 15px 12px 10px;
    font-size: 11px;
}

.history-table td {
    padding: 15px 12px;
    font-size: 13px;
}

.history-table td:first-child strong {
    font-size: 14px;
}

.history-table td:first-child small,
.verifier-compact-table td > small,
.results-table td > small {
    font-size: 11px;
}

.history-status {
    padding: 6px 9px;
    font-size: 11px;
}

.verifier-signup-cta {
    padding: 32px 36px;
}

.verifier-signup-cta span {
    font-size: 11px;
}

.verifier-signup-cta h2 {
    font-size: 24px;
}

.verifier-signup-cta p {
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .email-verifier-public-page .public-verifier-body > .container {
        width: min(calc(100% - 40px), 1360px);
    }

    .result-summary {
        grid-template-columns: 58px 1fr;
        padding: 26px 24px;
    }

    .result-confidence {
        grid-column: 2;
        align-items: flex-start;
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .email-verifier-public-page .public-verifier-body > .container,
    .dashboard-content,
    .dashboard-messages {
        width: min(calc(100% - 30px), 1360px);
    }

    .workbench-head,
    .verifier-batch-form,
    .signal-grid,
    .public-recent-checks,
    .batch-result-panel {
        padding-inline: 18px;
    }

    .result-summary {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 22px 18px;
    }

    .result-status-icon {
        width: 46px;
        height: 46px;
    }

    .result-summary-copy h2 {
        font-size: 23px;
    }

    .result-summary-copy > p:last-child {
        font-size: 14px;
    }

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

    .result-foot {
        gap: 8px;
        padding-inline: 18px;
        flex-direction: column;
    }

    .history-table {
        min-width: 700px;
    }

    .verifier-signup-cta {
        padding: 26px 22px;
    }
}

/* Global responsive foundation for every current and future app */
img,
video,
canvas {
    max-width: 100%;
    height: auto;
}

main,
section,
article,
aside,
form,
fieldset,
.dashboard-main,
.dashboard-content {
    min-width: 0;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

button,
a,
input,
select,
textarea,
label {
    touch-action: manipulation;
}

.app-container,
.page-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.content-measure {
    max-width: var(--content-measure);
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.responsive-table {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

.dashboard-backdrop {
    display: none;
}

.history-table-wrap {
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1080px) {
    .app-container,
    .page-container {
        width: min(calc(100% - 40px), var(--container));
    }
}

@media (max-width: 900px) {
    .dashboard-sidebar {
        width: min(86vw, 300px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .dashboard-backdrop {
        position: fixed;
        z-index: 55;
        inset: 0;
        display: block;
        border: 0;
        background: rgba(8, 10, 25, 0.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .dashboard-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    .dashboard-navigation-open {
        overflow: hidden;
    }

    .dashboard-menu {
        min-width: var(--touch-target);
        min-height: var(--touch-target);
        cursor: pointer;
    }

    .dashboard-nav a,
    .nav-disabled {
        min-height: 46px;
        font-size: 13px;
    }

    .sidebar-bottom a,
    .sidebar-bottom button {
        min-height: var(--touch-target);
        font-size: 12px;
    }
}

@media (max-width: 720px) {
    body,
    button,
    input,
    select,
    textarea {
        font-size: 16px;
    }

    .app-container,
    .page-container {
        width: min(calc(100% - 30px), var(--container));
    }

    .button-small {
        min-height: var(--touch-target);
    }

    .site-nav > a,
    .nav-login {
        min-height: 48px;
        font-size: 15px;
    }

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

    .auth-card > p,
    .auth-copy > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .help-text,
    .field-error,
    .form-terms {
        font-size: 12px;
        line-height: 1.55;
    }

    .form-alert {
        font-size: 13px;
    }

    .message {
        font-size: 14px;
    }

    .message button {
        min-width: var(--touch-target);
        min-height: var(--touch-target);
    }

    .dashboard-header-title strong {
        font-size: 14px;
    }

    .workspace-switcher strong {
        font-size: 12px;
    }

    .workspace-switcher small,
    .nav-label {
        font-size: 10px;
    }

    .dashboard-kicker {
        font-size: 11px;
    }

    .dashboard-welcome h1,
    .domain-title h1 {
        font-size: 30px;
    }

    .dashboard-welcome p,
    .domain-title p {
        font-size: 14px;
        line-height: 1.6;
    }

    .panel-heading h2,
    .panel-title-row h2,
    .record-heading h2,
    .help-panel h2,
    .next-step-panel h2 {
        font-size: 16px;
    }

    .panel-heading p,
    .panel-title-row p,
    .record-heading p {
        font-size: 12px;
        line-height: 1.55;
    }

    .public-verifier-copy > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .public-verifier-proof span {
        min-height: var(--touch-target);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    .public-verifier-meter span {
        font-size: 12px;
    }

    .public-verifier-meter > small {
        font-size: 11px;
        line-height: 1.5;
    }

    .verifier-field-footer {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .verifier-field-footer span {
        margin-left: auto;
    }

    .footer-brand > p,
    .footer-grid a,
    .footer-grid > div > span {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-grid h2 {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.6;
    }

    .verifier-tabs a {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
        font-size: 12px;
    }

    .panel-title-row > a {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
        font-size: 12px;
    }

    .panel-empty-state {
        font-size: 13px;
        line-height: 1.6;
    }

    .verifier-pricing-note p,
    .verifier-pricing-note li {
        font-size: 13px;
        line-height: 1.6;
    }

    .test-mode-note,
    .package-options label,
    .price-equation,
    .credit-account-summary > div,
    .credit-account-summary > p {
        font-size: 12px;
        line-height: 1.55;
    }

    .mobile-card-table,
    .mobile-card-table tbody {
        width: 100%;
        min-width: 0;
        display: block;
    }

    .mobile-card-table thead {
        display: none;
    }

    .mobile-card-table tbody {
        display: grid;
        gap: 12px;
        padding-top: 16px;
    }

    .mobile-card-table tr {
        display: grid;
        gap: 0;
        padding: 12px 14px;
        border: 1px solid #e5e8f1;
        border-radius: 12px;
        background: #fbfbfd;
    }

    .mobile-card-table td,
    .mobile-card-table td:first-child {
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(82px, 0.42fr) minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 7px 0;
        border: 0;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .mobile-card-table td[data-label]::before {
        content: attr(data-label);
        color: #7d8598;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.45px;
        text-transform: uppercase;
    }

    .mobile-card-table td:not([data-label]) {
        display: block;
    }

    .mobile-card-table td > a {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
        justify-self: start;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .public-verifier-copy h1 {
        font-size: clamp(34px, 10.5vw, 42px);
    }

    .public-verifier-meter,
    .verifier-workbench,
    .verification-result,
    .dashboard-panel,
    .verifier-signup-cta,
    .auth-card {
        border-radius: 16px;
    }
}

@media (max-width: 350px) {
    .workbench-rules {
        grid-template-columns: 1fr;
    }

    .workbench-rules span {
        border-right: 0;
        border-bottom: 1px solid #ebeaf1;
    }

    .workbench-rules span:last-child {
        border-bottom: 0;
    }

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