:root {
    color-scheme: light;
    --ink: #0b1220;
    --ink-2: #111a2d;
    --red: #d90404;
    --red-dark: #a80303;
    --green: #00c853;
    --paper: #ffffff;
    --soft: #f5f7fa;
    --line: rgba(11, 18, 32, .1);
    --line-dark: rgba(255, 255, 255, .14);
    --muted: #617089;
    --text: #111827;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(11, 18, 32, .12);
    --shadow-soft: 0 14px 40px rgba(11, 18, 32, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--paper);
}

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

p {
    color: var(--muted);
    line-height: 1.72;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    letter-spacing: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(11, 18, 32, .08);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: var(--ink);
}

.brand-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ink), #1b2a46);
    color: var(--white);
    box-shadow: 0 16px 35px rgba(11, 18, 32, .18);
    font-size: 13px;
}

.main-nav,
nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #46556c;
    font-size: 14px;
    font-weight: 700;
}

.mobile-app-nav {
    display: none;
}

.main-nav a:hover,
nav a:hover {
    color: var(--red);
}

.nav-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 16px;
    background: var(--red);
    color: white !important;
}

.section,
.hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.hero {
    display: grid;
    min-height: 720px;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(34px, 6vw, 72px);
    padding: 70px 0 84px;
}

.hero-premium {
    position: relative;
}

.hero-premium::before {
    content: "";
    position: absolute;
    inset: -90px -12vw auto auto;
    width: min(620px, 70vw);
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 4, .14), transparent 62%);
    pointer-events: none;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    border: 1px solid rgba(217, 4, 4, .14);
    border-radius: 999px;
    background: rgba(217, 4, 4, .06);
    color: var(--red);
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1 {
    max-width: 850px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    font-weight: 900;
}

h2 {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 900;
}

.hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    font-size: 18px;
}

.actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 900;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

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

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 18px 44px rgba(217, 4, 4, .24);
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-light {
    background: var(--ink);
    color: white;
}

.btn-ghost {
    border: 1px solid rgba(11, 18, 32, .14);
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span,
.tech-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    color: #344258;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.infra-visual {
    position: relative;
    z-index: 1;
    min-height: 430px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .03)),
        radial-gradient(circle at 20% 15%, rgba(217, 4, 4, .24), transparent 30%),
        var(--ink);
    box-shadow: var(--shadow);
    padding: clamp(18px, 4vw, 28px);
    overflow: hidden;
}

.infra-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .3;
}

.server-card,
.mini-metrics,
.performance-bars,
.floating-chip {
    position: relative;
    z-index: 2;
}

.server-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
    padding: 20px;
    color: white;
}

.server-card p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .62);
}

.server-card b {
    font-size: 34px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(0, 200, 83, .14);
}

.mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.mini-metrics div {
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(255, 255, 255, .075);
    padding: 14px;
    color: white;
}

.mini-metrics span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.performance-bars {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.performance-bars span {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
}

.performance-bars span::before {
    content: "";
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
}

.floating-chip {
    display: inline-flex;
    border-radius: 999px;
    padding: 10px 13px;
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.chip-red {
    margin-top: 28px;
    background: rgba(217, 4, 4, .88);
}

.chip-green {
    float: right;
    margin-top: 28px;
    background: rgba(0, 200, 83, .88);
}

.domain-band,
.tech-band {
    border-block: 1px solid rgba(11, 18, 32, .08);
    background: var(--soft);
}

.domain-band {
    padding: 58px 0;
}

.domain-shell,
.tech-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 32px;
    align-items: center;
}

.search-box,
.form-card,
.admin-card,
.card,
.benefit-card,
.testimonial-card,
.tech-dashboard {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-soft);
}

.search-box {
    margin-top: 0;
    padding: 14px;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.field,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    outline: none;
    padding: 15px 16px;
    font: inherit;
}

.field:focus,
select:focus,
textarea:focus {
    border-color: rgba(217, 4, 4, .44);
    box-shadow: 0 0 0 4px rgba(217, 4, 4, .08);
}

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

.result {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: #435169;
    padding: 15px;
}

.domain-result {
    margin-top: 14px;
    border: 1px solid rgba(0, 200, 83, .24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(0, 200, 83, .1), rgba(255, 255, 255, .94)),
        white;
    padding: 20px;
}

.domain-result h3 {
    margin-top: 10px;
    font-size: clamp(22px, 3vw, 34px);
}

.domain-result p {
    max-width: 680px;
    margin-top: 8px;
    color: var(--muted);
}

.domain-result small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.domain-result-unavailable,
.domain-result-invalid {
    border-color: rgba(217, 4, 4, .2);
    background:
        linear-gradient(135deg, rgba(217, 4, 4, .08), rgba(255, 255, 255, .94)),
        white;
}

.domain-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: rgba(0, 200, 83, .12);
    color: #057236;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.domain-status-muted {
    background: rgba(217, 4, 4, .1);
    color: #9b1111;
}

.domain-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.domain-flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.domain-flow-actions .btn {
    min-width: 220px;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 28px 0;
}

.checkout-steps span {
    display: grid;
    min-height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--muted);
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}

.checkout-steps span small {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: 10px;
    font-weight: 800;
    opacity: .72;
}

.checkout-steps span.is-done {
    border-color: rgba(217, 4, 4, .2);
    background: rgba(217, 4, 4, .06);
    color: var(--ink);
}

.checkout-steps span.is-pending {
    background: rgba(245, 247, 250, .78);
}

.checkout-steps span.is-blocked,
.checkout-steps span.is-failed {
    border-color: rgba(217, 4, 4, .28);
    background: rgba(217, 4, 4, .09);
    color: #9b1111;
}

.checkout-summary {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    padding: 16px;
}

.checkout-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.checkout-summary div:last-child {
    border-top: 1px solid var(--line);
    padding-top: 10px;
    font-size: 18px;
}

.workflow-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.workflow-step {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 16px;
}

.workflow-step strong,
.workflow-step span {
    display: block;
}

.workflow-step span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.workflow-step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.workflow-step.is-done {
    border-color: rgba(0, 200, 83, .25);
    background: rgba(0, 200, 83, .06);
}

.workflow-step.is-pending {
    background: var(--soft);
}

.dns-editor {
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.dns-editor .form-grid {
    gap: 12px;
}

.section-spacing {
    padding: 82px 0;
}

.section-head {
    max-width: 780px;
    margin-bottom: 32px;
}

.section-head p {
    max-width: 650px;
}

.section-head.compact {
    max-width: 660px;
}

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

.proof-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.proof-card strong {
    display: block;
    color: var(--ink);
    font-size: 28px;
    font-weight: 900;
}

.proof-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.55;
}

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

.card,
.pricing-card {
    padding: 24px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card.featured {
    position: relative;
    border-color: rgba(217, 4, 4, .28);
    background: linear-gradient(180deg, rgba(217, 4, 4, .08), white 38%);
    box-shadow: 0 28px 80px rgba(217, 4, 4, .14);
}

.plan-top {
    min-height: 170px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: rgba(11, 18, 32, .06);
    color: var(--ink);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
}

.pill-red {
    background: rgba(217, 4, 4, .1);
    color: var(--red);
}

.price {
    margin: 20px 0;
    color: var(--ink);
    font-size: 40px;
    font-weight: 900;
}

.price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.features {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: #334155;
}

.features li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 14px;
    margin-right: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(40deg) translateY(-1px);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.compare-band {
    border-block: 1px solid rgba(11, 18, 32, .08);
    background:
        radial-gradient(circle at 88% 10%, rgba(217, 4, 4, .08), transparent 28rem),
        var(--soft);
    padding: 82px 0;
}

.compare-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 32px;
    align-items: center;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compare-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.muted-card {
    background: #eef2f7;
}

.strong-card {
    background: var(--ink);
    color: white;
}

.strong-card h3,
.strong-card li {
    color: white;
}

.compare-card ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.compare-card li {
    color: #46556c;
    line-height: 1.5;
}

.compare-card li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--red);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    padding: 22px;
}

.icon-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: rgba(217, 4, 4, .1);
}

.icon-mark::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--red);
}

.tech-band {
    padding: 82px 0;
}

.wordpress-panel {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(217, 4, 4, .13), transparent 34%),
        linear-gradient(135deg, white, var(--soft));
    box-shadow: var(--shadow-soft);
    padding: clamp(24px, 5vw, 46px);
}

.wp-features {
    display: grid;
    gap: 12px;
}

.wp-features span {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 900;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.solution-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.solution-card a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--red);
    font-weight: 900;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tech-dashboard {
    padding: 22px;
    background: var(--ink);
}

.dashboard-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line-dark);
    padding: 16px 0;
    color: rgba(255, 255, 255, .72);
}

.dashboard-row b {
    color: white;
}

.latency-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 120px;
    margin-top: 20px;
}

.latency-chart i {
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--red), rgba(217, 4, 4, .22));
}

.latency-chart i:nth-child(1) { height: 46%; }
.latency-chart i:nth-child(2) { height: 72%; }
.latency-chart i:nth-child(3) { height: 58%; }
.latency-chart i:nth-child(4) { height: 86%; }
.latency-chart i:nth-child(5) { height: 64%; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    padding: 22px;
}

.testimonial-card strong {
    color: var(--red);
}

.testimonial-card span {
    color: var(--ink);
    font-weight: 900;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
}

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

.faq-list p {
    margin-bottom: 0;
}

.final-cta {
    margin-bottom: 76px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 0, rgba(217, 4, 4, .26), transparent 42%),
        var(--ink);
    padding: clamp(34px, 6vw, 62px);
}

.final-cta h2,
.final-cta p {
    color: white;
}

.final-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, .68);
}

.form-card {
    margin: 34px 0 70px;
    padding: 24px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    margin: 14px 0 0;
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label span {
    display: block;
    margin: 0 0 8px;
    color: #46556c;
    font-size: 14px;
    font-weight: 800;
}

.notice,
.error {
    margin-top: 16px;
    border-radius: 8px;
    padding: 16px;
}

.notice {
    border: 1px solid rgba(0, 200, 83, .28);
    background: rgba(0, 200, 83, .08);
    color: #065f2b;
}

.error {
    border: 1px solid rgba(217, 4, 4, .25);
    background: rgba(217, 4, 4, .08);
    color: #8b0000;
}

.admin-layout {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 36px 0 70px;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    width: 280px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 4, 4, .16), transparent 28%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
    padding: 18px;
    color: white;
    box-shadow: 20px 0 60px rgba(11, 18, 32, .18);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    padding: 12px;
    color: white;
}

.admin-sidebar-brand span:last-child {
    display: grid;
    gap: 2px;
}

.admin-sidebar-brand strong {
    color: white;
    font-size: 14px;
}

.admin-sidebar-brand small,
.admin-sidebar-nav small,
.admin-sidebar-footer a {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

.admin-sidebar-nav {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    overflow-y: auto;
    padding-right: 4px;
}

.admin-nav-group {
    display: grid;
    gap: 7px;
}

.admin-nav-group > span {
    padding: 0 10px;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-nav-group a {
    display: grid;
    gap: 2px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px;
    color: rgba(255, 255, 255, .82);
}

.admin-nav-group a strong {
    color: inherit;
    font-size: 14px;
}

.admin-nav-group a:hover,
.admin-nav-group a.is-active {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: white;
}

.admin-nav-group a.is-active {
    box-shadow: inset 3px 0 0 var(--red);
}

.admin-sidebar-footer {
    display: grid;
    gap: 8px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 14px;
}

.admin-sidebar-footer a {
    min-height: 38px;
    border-radius: 8px;
    padding: 10px;
}

.admin-sidebar-footer a:hover {
    background: rgba(255, 255, 255, .08);
    color: white;
}

.admin-body {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.admin-body .admin-layout {
    width: min(1180px, calc(100% - 340px));
    margin-left: 310px;
    margin-right: 30px;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.admin-card {
    margin-bottom: 16px;
    padding: 20px;
}

.spam-card {
    border-color: rgba(217, 4, 4, .34);
    background: rgba(217, 4, 4, .045);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
}

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

.footer {
    border-top: 1px solid var(--line);
    background: var(--ink);
    color: white;
    padding: 54px clamp(18px, 5vw, 72px) 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer p,
.footer span,
.footer a {
    display: block;
    color: rgba(255, 255, 255, .66);
}

.footer strong {
    display: block;
    margin-bottom: 14px;
    color: white;
}

.footer a,
.footer span {
    margin-top: 10px;
}

.footer-brand {
    margin-bottom: 14px;
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, 100%);
    margin: 34px auto 0;
    border-top: 1px solid var(--line-dark);
    padding-top: 22px;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 960px) {
    .hero,
    .domain-shell,
    .tech-layout,
    .wordpress-panel,
    .compare-layout,
    .plans,
    .pricing-grid,
    .benefit-grid,
    .testimonial-grid,
    .proof-grid,
    .solution-grid,
    .form-grid,
    .admin-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: auto;
        padding: 44px 0 60px;
    }

    .infra-visual {
        min-height: 360px;
    }

    .plan-top {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        bottom: auto;
        width: 100%;
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .admin-sidebar-brand {
        margin-bottom: 10px;
    }

    .admin-sidebar-nav {
        display: flex;
        gap: 10px;
        margin-top: 0;
        overflow-x: auto;
        padding: 0 0 4px;
    }

    .admin-nav-group {
        display: flex;
        gap: 8px;
        min-width: max-content;
    }

    .admin-nav-group > span,
    .admin-nav-group a small,
    .admin-sidebar-footer {
        display: none;
    }

    .admin-nav-group a {
        min-height: 42px;
        align-content: center;
        white-space: nowrap;
    }

    .admin-body .admin-layout {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        padding-top: 22px;
    }

    .admin-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }

    .main-nav {
        display: none;
    }

    .mobile-app-nav {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        padding-top: 4px;
    }

    .mobile-app-nav a {
        display: grid;
        min-height: 36px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--soft);
        padding: 0 12px;
        white-space: nowrap;
        color: var(--ink);
        font-size: 13px;
        font-weight: 900;
    }

    h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .hero-actions .btn,
    .search-row,
    .search-row .btn {
        width: 100%;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .mini-metrics {
        grid-template-columns: 1fr;
    }

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

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

    .mobile-sticky-cta {
        position: fixed;
        right: 14px;
        bottom: 14px;
        left: 14px;
        z-index: 50;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 8px;
        background: rgba(11, 18, 32, .92);
        padding: 10px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(16px);
    }

    .mobile-sticky-cta a {
        display: grid;
        min-height: 44px;
        place-items: center;
        border-radius: 8px;
        background: white;
        color: var(--ink);
        font-size: 14px;
        font-weight: 900;
    }

    .mobile-sticky-cta a:last-child {
        background: var(--red);
        color: white;
    }

    body {
        padding-bottom: 78px;
    }
}
