:root {
    color-scheme: light;
    --navy: #07111f;
    --navy-2: #0d1b2d;
    --ink: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --panel: #ffffff;
    --soft: #f5f7fb;
    --cyan: #10b8d8;
    --blue: #2563eb;
    --success: #0f766e;
    --danger: #be123c;
    --header-bg: #07111f;
    --hero-bg: #07111f;
    --content-bg: #f7f9fc;
    --footer-bg: #ffffff;
    --shadow: 0 22px 55px rgba(16, 24, 40, .12);
    --radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--navy);
    color: var(--ink);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
}

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

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

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 13px;
    outline: none;
    background: #fff;
    color: var(--ink);
}

textarea {
    resize: vertical;
    min-height: 92px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(16, 184, 216, .12);
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.site-body {
    --site-max: 1180px;
    --site-gutter: 32px;
    background: var(--content-bg);
}

.site-shell {
    min-height: 100vh;
    background: var(--content-bg);
}

.site-body.layout-narrow {
    --site-max: 980px;
}

.site-body.layout-full {
    --site-max: 1440px;
    --site-gutter: 48px;
}

.site-body.layout-boxed {
    --site-max: 1120px;
    background: #e9edf3;
    padding-block: 18px;
}

.layout-boxed .site-shell {
    width: min(1240px, calc(100% - 36px));
    margin-inline: auto;
    box-shadow: 0 28px 90px rgba(16, 24, 40, .18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: min(var(--site-max), calc(100% - var(--site-gutter)));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    background: color-mix(in srgb, var(--header-bg), transparent 8%);
    padding-inline: 18px;
    backdrop-filter: blur(16px);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.site-logo span,
.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    background: #fff;
    color: var(--navy);
    font-weight: 900;
}

.site-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--radius);
    background: transparent;
}

.site-logo strong {
    font-size: 18px;
    letter-spacing: 0;
}

.site-menu,
.site-actions,
.hero-buttons,
.contact-lines,
.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-menu {
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 700;
}

.site-menu a:hover {
    color: #fff;
}

.login-link,
.secondary-link,
.demo-link,
.primary-button,
.ghost-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0 16px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
}

.login-link,
.secondary-link,
.ghost-button {
    background: transparent;
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.demo-link,
.primary-button {
    background: var(--cyan);
    color: var(--navy);
    border-color: var(--cyan);
}

.hero-section {
    background: var(--hero-bg);
    color: #fff;
    margin-top: -72px;
    padding: 144px max(16px, calc((100% - var(--site-max)) / 2)) 84px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 44px;
    align-items: center;
}

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

.site-eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-content h1,
.section-title h2,
.why-section h2,
.contact-section h2,
.admin-header h1,
.admin-login h1 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.03;
}

.hero-content h1 {
    font-size: 62px;
}

.hero-content p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.72;
}

.hero-buttons {
    margin-top: 30px;
}

.product-frame {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    background: #0b1728;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.product-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .74);
}

.product-top span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
}

.product-top strong {
    margin-left: auto;
    font-size: 13px;
}

.product-layout {
    display: grid;
    grid-template-columns: 148px 1fr;
    min-height: 430px;
}

.product-layout aside {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.product-layout aside b {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.product-layout aside b:first-child {
    background: rgba(16, 184, 216, .16);
    color: #fff;
}

.product-layout section {
    padding: 18px;
}

.product-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-metrics article,
.product-table,
.feature-grid article,
.module-grid article,
.why-list article,
.pricing-panel article,
.faq-list details,
.demo-form,
.admin-section,
.admin-grid article,
.admin-form-card,
.lead-table div,
.notice {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.product-metrics article {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    padding: 14px;
}

.product-metrics span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 700;
}

.product-metrics strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 24px;
}

.product-chart {
    height: 190px;
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
}

.product-chart i {
    flex: 1;
    display: block;
    border-radius: 4px 4px 0 0;
    background: var(--cyan);
}

.product-table {
    margin-top: 18px;
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    color: rgba(255, 255, 255, .74);
    overflow: hidden;
}

.product-table span {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
}

.product-table span:nth-child(-n+3) {
    border-top: 0;
}

.site-slider {
    position: relative;
    z-index: 4;
    width: min(var(--site-max), calc(100% - var(--site-gutter)));
    margin: -42px auto 0;
    border: 1px solid rgba(208, 213, 221, .92);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.slider-track {
    min-height: 220px;
}

.slider-slide {
    display: none;
    grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
    gap: 28px;
    align-items: center;
    min-height: 220px;
    padding: 28px;
}

.slider-slide.is-active {
    display: grid;
}

.slider-slide h2 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
}

.slider-slide p:not(.site-eyebrow) {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.slider-link {
    min-height: 40px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    border-radius: 7px;
    padding: 0 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 850;
}

.slider-visual {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fafc, #eef7fb);
}

.slider-visual span {
    height: 12px;
    border-radius: 999px;
    background: #d0d5dd;
}

.slider-visual span:nth-child(1) {
    width: 42%;
    background: var(--cyan);
}

.slider-visual span:nth-child(2) {
    width: 76%;
}

.slider-visual span:nth-child(3) {
    width: 58%;
}

.slider-visual div {
    height: 92px;
    margin-top: 10px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.slider-visual i {
    flex: 1;
    display: block;
    border-radius: 5px 5px 0 0;
    background: var(--navy);
    opacity: .92;
}

.slider-visual i:nth-child(1) {
    height: 48%;
}

.slider-visual i:nth-child(2) {
    height: 74%;
}

.slider-visual i:nth-child(3) {
    height: 58%;
}

.slider-visual i:nth-child(4) {
    height: 86%;
}

.slider-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-controls button {
    width: 34px;
    height: 34px;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    min-height: 8px;
    border-radius: 999px;
    padding: 0;
    background: #cbd5e1;
}

.slider-dots button.is-active {
    width: 22px;
    background: var(--cyan);
}

.site-slider + .trust-strip {
    margin-top: 24px;
}

.trust-strip,
.content-section,
.why-section,
.contact-section,
.site-footer {
    width: min(var(--site-max), calc(100% - var(--site-gutter)));
    margin-inline: auto;
}

.trust-strip {
    margin-top: -38px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.trust-strip article {
    padding: 22px;
    border-left: 1px solid var(--line);
}

.trust-strip article:first-child {
    border-left: 0;
}

.trust-strip strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
}

.trust-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.content-section,
.why-section,
.contact-section {
    margin-top: 96px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-title h2,
.why-section h2,
.contact-section h2 {
    font-size: 44px;
}

.section-title p:not(.site-eyebrow),
.contact-section p,
.why-list p,
.feature-grid p,
.module-grid h3,
.pricing-panel p,
.faq-list p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

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

.feature-grid article {
    min-height: 190px;
    padding: 20px;
}

.feature-grid h3,
.why-list h3,
.pricing-panel h3,
.module-grid span {
    margin: 0;
    font-size: 18px;
    color: var(--ink);
}

.feature-grid p {
    margin: 12px 0 0;
}

.module-section {
    background: #fff;
    width: 100%;
    padding: 86px max(16px, calc((100% - var(--site-max)) / 2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.module-section .section-title,
.module-grid {
    width: min(var(--site-max), 100%);
}

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

.module-grid article {
    padding: 20px;
    background: var(--soft);
}

.module-grid span {
    color: var(--cyan);
    font-weight: 900;
}

.module-grid h3 {
    margin: 14px 0 0;
    font-size: 18px;
}

.module-grid ul,
.pricing-panel ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.module-grid li,
.pricing-panel li {
    color: var(--muted);
    font-size: 14px;
}

.module-grid li::before,
.pricing-panel li::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--cyan);
    vertical-align: middle;
}

.why-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
}

.why-list {
    display: grid;
    gap: 12px;
}

.why-list article {
    padding: 20px;
}

.why-list p {
    margin: 8px 0 0;
}

.pricing-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pricing-panel article {
    padding: 22px;
}

.pricing-panel article.highlight {
    border-color: var(--cyan);
    box-shadow: var(--shadow);
}

.pricing-panel span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e9f9fc;
    color: #087b92;
    font-size: 12px;
    font-weight: 900;
}

.pricing-panel h3 {
    margin-top: 18px;
    font-size: 24px;
}

.pricing-panel strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    color: var(--navy);
}

.faq-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 36px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 44px;
    align-items: start;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    padding: 42px;
}

.contact-section p {
    color: rgba(255, 255, 255, .72);
}

.contact-lines {
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    color: #fff;
    font-weight: 800;
}

.demo-form {
    padding: 20px;
    background: #fff;
}

.demo-form button {
    width: 100%;
    border: 0;
}

.notice {
    padding: 12px 14px;
    margin-bottom: 12px;
    font-weight: 800;
}

.notice.success {
    background: #ecfdf3;
    border-color: #abefc6;
    color: #067647;
}

.notice.error {
    background: #fff1f3;
    border-color: #fecdd6;
    color: var(--danger);
}

.site-footer {
    margin-top: 76px;
    padding: 30px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    border-top: 1px solid var(--line);
    border-radius: 8px 8px 0 0;
    background: var(--footer-bg);
}

.site-footer strong {
    color: var(--navy);
}

.site-footer p {
    max-width: 560px;
    margin: 8px 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-weight: 800;
}

.page-hero {
    background: var(--navy);
    color: #fff;
    margin-top: -72px;
    padding: 154px max(16px, calc((100% - 960px) / 2)) 72px;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

.page-hero p:not(.site-eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.7;
}

.page-content {
    width: min(920px, calc(100% - 32px));
    margin: 64px auto 0;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.page-content p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.admin-body {
    background: #f2f4f7;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 12px;
    border-radius: 6px;
    background: #111827;
    color: #fff;
    font-weight: 900;
}

.skip-link:focus {
    transform: translateY(0);
}

.admin-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.admin-login {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: calc(100vh - 56px);
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 32px;
}

.admin-login h1 {
    font-size: 44px;
}

.admin-login p {
    color: var(--muted);
    line-height: 1.7;
}

.admin-form-card,
.admin-section {
    padding: 20px;
    box-shadow: 0 16px 45px rgba(16, 24, 40, .08);
}

.admin-form-card {
    display: grid;
    gap: 14px;
}

.admin-header {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 0 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    flex: 0 0 auto;
}

.admin-header-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-header-title span:not(.admin-product-mark) {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-product-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #111827;
    color: #fff;
    font-weight: 900;
}

.admin-actions .ghost-button,
.admin-section .ghost-button {
    color: var(--navy);
    border-color: var(--line);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-console {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 332px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.admin-sidebar {
    min-height: 0;
    height: 100vh;
    overflow: auto;
    padding: 18px;
    border: 0;
    border-right: 1px solid #d0d5dd;
    border-radius: 0;
    background: #111827;
    color: #fff;
    box-shadow: none;
}

.admin-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-brand > span,
.admin-brand img {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 900;
    object-fit: contain;
}

.admin-brand > span {
    background: var(--cyan);
}

.admin-brand img {
    background: transparent;
}

.admin-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 16px;
}

.admin-side-actions {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.admin-side-actions .ghost-button {
    width: 100%;
    min-height: 38px;
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
}

.admin-sidebar a {
    display: grid;
    gap: 3px;
    padding: 11px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.admin-sidebar a strong,
.admin-sidebar a small {
    display: block;
}

.admin-sidebar a small {
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 650;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
    background: #fff;
    color: #111827;
    box-shadow: inset 4px 0 0 var(--cyan);
}

.admin-sidebar a.is-active small,
.admin-sidebar a:hover small {
    color: #475467;
}

.admin-sidebar a:focus-visible,
.admin-actions a:focus-visible,
.admin-actions button:focus-visible,
.admin-section input:focus-visible,
.admin-section textarea:focus-visible,
.admin-section button:focus-visible,
.sticky-save button:focus-visible {
    outline: 3px solid rgba(16, 184, 216, .55);
    outline-offset: 2px;
}

.admin-workspace {
    min-width: 0;
    height: 100vh;
    overflow: auto;
    padding: 24px;
    background: #f2f4f7;
}

.admin-management-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.admin-list {
    display: grid;
    gap: 10px;
}

.admin-user-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
}

.admin-user-row strong,
.admin-user-row span {
    display: block;
}

.admin-user-row span {
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.admin-user-row form {
    margin: 0;
}

button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.admin-commandbar {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
}

.admin-commandbar h2 {
    margin: 0;
    color: #111827;
    font-size: 26px;
}

.admin-commandbar p:not(.eyebrow) {
    margin: 7px 0 0;
    color: #475467;
    line-height: 1.5;
}

.admin-statusbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-statusbar span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 0 10px;
    color: #344054;
    background: #f9fafb;
    font-size: 12px;
    font-weight: 850;
}

.admin-pane {
    display: none;
}

.admin-pane.is-active {
    display: block;
}

.admin-grid.admin-pane.is-active {
    display: grid;
}

.admin-help {
    margin-top: -8px;
    color: var(--muted);
    line-height: 1.6;
}

.admin-grid article {
    padding: 20px;
    background: #fff;
}

.admin-wide-card {
    grid-column: span 2;
}

.admin-grid strong {
    display: block;
    font-size: 28px;
}

.admin-grid span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.cms-form {
    display: grid;
    gap: 0;
}

.admin-section h2 {
    margin: 0 0 18px;
}

.admin-section {
    border-color: #d0d5dd;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.section-head h2 {
    margin: 0;
}

.section-head > span {
    padding: 7px 10px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    color: #344054;
    background: #f9fafb;
    font-size: 12px;
    font-weight: 900;
}

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

.form-grid .wide {
    grid-column: 1 / -1;
}

.editor-stack {
    display: grid;
    gap: 18px;
}

.field-block-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin: 4px 0 12px;
    padding: 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #f9fafb;
}

.field-block-title strong,
.field-block-title small {
    display: block;
}

.field-block-title strong {
    color: #111827;
    font-size: 15px;
}

.field-block-title small {
    max-width: 760px;
    color: #667085;
    line-height: 1.5;
    font-weight: 650;
}

.repeater {
    display: grid;
    gap: 12px;
}

.repeater-list {
    display: grid;
    gap: 12px;
}

.repeater-row {
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.repeater-row-head {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #eaecf0;
    background: #f9fafb;
}

.repeater-row-head strong {
    color: #344054;
    font-size: 13px;
}

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

.repeater-fields .wide {
    grid-column: 1 / -1;
}

.repeater-fields small {
    color: #667085;
    line-height: 1.45;
    font-weight: 650;
}

.repeater-add {
    justify-self: start;
    color: #111827;
    border-color: #98a2b3;
}

.danger-button {
    min-height: 34px;
    color: #b42318 !important;
    border-color: #fecdca !important;
    background: #fffbfa !important;
}

.toggle-line {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
}

.toggle-line input {
    width: 18px;
    height: 18px;
    padding: 0;
}

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

.color-field {
    min-height: 116px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.color-field input {
    height: 42px;
    padding: 4px;
}

.color-field code {
    display: inline-flex;
    width: fit-content;
    margin-top: 2px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #101828;
    color: #fff;
    font-size: 12px;
}

.layout-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.layout-option {
    min-height: 116px;
    padding: 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.layout-option input {
    width: 18px;
    height: 18px;
    margin: 0 0 12px;
    padding: 0;
}

.layout-option strong,
.layout-option span {
    display: block;
}

.layout-option strong {
    color: #111827;
}

.layout-option span {
    margin-top: 6px;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 650;
}

.layout-option:has(input:checked) {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(16, 184, 216, .13);
}

.sticky-save {
    position: fixed;
    right: 28px;
    bottom: 22px;
    z-index: 30;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .16);
}

.lead-table {
    display: grid;
    gap: 10px;
}

.lead-editor {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
}

.lead-editor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.lead-editor-head strong,
.lead-editor-head span {
    display: block;
}

.lead-editor-head span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.lead-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    padding-right: 70px;
}

.lead-delete-form {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

@media (max-width: 1040px) {
    .site-header {
        position: static;
        padding: 16px;
        flex-wrap: wrap;
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, .14);
    }

    .site-menu {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        color: rgba(255, 255, 255, .74);
    }

    .login-link,
    .secondary-link,
    .ghost-button {
        color: var(--navy);
        border-color: var(--line);
    }

    .site-header .login-link,
    .hero-section .secondary-link {
        color: #fff;
        border-color: rgba(255, 255, 255, .24);
    }

    .hero-section {
        margin-top: 0;
        padding-top: 56px;
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .feature-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-grid,
    .pricing-panel,
    .slider-slide,
    .why-section,
    .faq-section,
    .contact-section,
    .color-grid,
    .layout-options,
    .admin-management-grid,
    .admin-login,
    .admin-console,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        height: auto;
        min-height: auto;
        border-right: 0;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-body {
        overflow: auto;
    }

    .admin-console {
        min-height: auto;
    }

    .admin-workspace {
        height: auto;
        overflow: visible;
    }

    .admin-commandbar,
    .field-block-title {
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .site-header,
    .site-actions,
    .hero-buttons,
    .admin-header,
    .admin-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-actions,
    .hero-buttons,
    .admin-actions {
        width: 100%;
    }

    .hero-content h1,
    .section-title h2,
    .why-section h2,
    .contact-section h2,
    .admin-login h1,
    .admin-header h1 {
        font-size: 34px;
    }

    .hero-section {
        padding-bottom: 52px;
    }

    .site-slider {
        margin-top: 18px;
    }

    .slider-slide {
        min-height: 0;
        padding: 22px;
    }

    .slider-slide h2 {
        font-size: 26px;
    }

    .slider-visual {
        display: none;
    }

    .slider-controls {
        position: static;
        justify-content: space-between;
        padding: 0 18px 18px;
    }

    .product-layout,
    .product-metrics,
    .trust-strip,
    .feature-grid,
    .admin-grid,
    .admin-sidebar nav,
    .form-grid,
    .repeater-fields,
    .field-block-title {
        grid-template-columns: 1fr;
    }

    .product-layout aside {
        display: none;
    }

    .product-table {
        grid-template-columns: 1fr;
    }

    .product-table span {
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .trust-strip {
        margin-top: 18px;
    }

    .trust-strip article,
    .trust-strip article:first-child {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .trust-strip article:first-child {
        border-top: 0;
    }

    .contact-section {
        padding: 22px;
    }
}
