:root {
    --paper: #f6f5f1;
    --surface: #fffdf8;
    --ink: #121715;
    --ink-soft: #35413c;
    --muted: #69736f;
    --line: #d9ddd6;
    --dark: #0d1210;
    --dark-soft: #1d2925;
    --accent: #36b982;
    --accent-deep: #188c62;
    --amber: #d59b31;
    --blue: #2e6dd3;
    --error: #b83d3d;
    --radius: 8px;
    --shadow: 0 20px 60px rgba(18, 23, 21, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

.shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(1200px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 12px 14px;
    color: #f9fbf7;
    background: rgba(13, 18, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    background: rgba(13, 18, 16, 0.82);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    font-weight: 750;
}

.brand__mark {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background:
        linear-gradient(135deg, var(--accent), rgba(54, 185, 130, 0) 60%),
        linear-gradient(315deg, var(--amber), rgba(213, 155, 49, 0) 54%),
        #15201c;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-nav a,
.header-cta,
.header-icon {
    min-height: 38px;
    border-radius: 6px;
    color: rgba(249, 251, 247, 0.82);
    font-size: 0.95rem;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav a,
.header-cta {
    padding: 8px 12px;
}

.header-icon {
    display: grid;
    place-items: center;
    width: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.site-nav a:hover,
.site-nav a.is-active,
.header-cta.is-active,
.header-cta:hover,
.header-icon.is-active,
.header-icon:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header-cta {
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 84vh;
    max-height: 780px;
    padding: 128px 0 144px;
    overflow: hidden;
    color: #ffffff;
    background: var(--dark);
}

.hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 13, 12, 0.98) 0%, rgba(9, 13, 12, 0.84) 42%, rgba(9, 13, 12, 0.2) 100%),
        linear-gradient(0deg, rgba(9, 13, 12, 0.25), rgba(9, 13, 12, 0)),
        url("../img/blink-host-infrastructure.png") center right / cover no-repeat;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: 5.6rem;
    line-height: 0.94;
    letter-spacing: 0;
}

.hero__lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.16rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 132px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 750;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--light {
    color: var(--ink);
    background: #ffffff;
}

.button--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.button--line {
    color: var(--ink);
    border-color: var(--line);
    background: var(--surface);
}

.button--dark {
    color: #ffffff;
    background: var(--dark);
}

.domain-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(610px, 100%);
    min-height: 58px;
    margin-top: 34px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
}

.domain-search input {
    min-width: 0;
    color: #ffffff;
    border: 0;
    background: transparent;
    padding: 0 16px;
    outline: 0;
}

.domain-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.domain-search button {
    min-width: 112px;
    border: 0;
    border-radius: 6px;
    color: var(--ink);
    background: var(--accent);
    font-weight: 800;
    cursor: pointer;
}

.notice {
    width: min(610px, 100%);
    margin-top: 12px;
    padding: 11px 14px;
    border-radius: 6px;
    font-size: 0.94rem;
}

.notice--success {
    color: #083d2c;
    background: #dbf7ea;
}

.notice--error {
    color: #651b1b;
    background: #f7dddd;
}

.domain-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(610px, 100%);
    margin-top: 12px;
}

.domain-results a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 174px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.domain-results strong {
    color: var(--accent);
}

.hero__stats {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    width: min(740px, calc(100% - 40px));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(12, 18, 16, 0.7);
    backdrop-filter: blur(18px);
}

.hero__stats div {
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats div:last-child {
    border-right: 0;
}

.hero__stats strong,
.hero__stats span {
    display: block;
}

.hero__stats strong {
    font-size: 1.45rem;
}

.hero__stats span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
}

.page-hero {
    position: relative;
    min-height: 430px;
    padding: 148px 0 76px;
    overflow: hidden;
    color: #ffffff;
    background: var(--dark);
}

.page-hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 13, 12, 0.98) 0%, rgba(9, 13, 12, 0.82) 50%, rgba(9, 13, 12, 0.28) 100%),
        url("../img/blink-host-infrastructure.png") center right / cover no-repeat;
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: 4.1rem;
    line-height: 1;
    letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
}

.section {
    padding: 92px 0;
}

.section--plans {
    padding-top: 78px;
}

.section--muted {
    background: #ecefeb;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading > .eyebrow,
.section-heading > h2,
.section-heading > p:not(.eyebrow) {
    grid-column: 1;
}

.section-heading > .billing-toggle {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
}

.section-heading h2 {
    max-width: 680px;
    margin: 0;
    font-size: 2.75rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--muted);
}

.section-heading--left {
    display: block;
    margin-bottom: 0;
}

.billing-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, 94px);
    min-height: 44px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.billing-toggle button {
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    background: transparent;
    font-weight: 750;
    cursor: pointer;
}

.billing-toggle button.is-active {
    color: #ffffff;
    background: var(--dark);
}

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

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(18, 23, 21, 0.03);
}

.plan-card--featured {
    border-color: rgba(54, 185, 130, 0.55);
    box-shadow: var(--shadow);
}

.plan-card--dark {
    color: #ffffff;
    border-color: var(--dark);
    background: var(--dark);
}

.plan-card__top span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-card--dark .plan-card__top span {
    color: var(--amber);
}

.plan-card h3 {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.15;
}

.plan-card__price {
    margin: 26px 0;
}

.price-value {
    display: inline-block;
    min-width: 120px;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 850;
}

.plan-card__price small {
    color: var(--muted);
}

.plan-card--dark .plan-card__price small,
.plan-card--dark .check-list,
.plan-card--dark .plan-specs dt {
    color: rgba(255, 255, 255, 0.64);
}

.plan-specs {
    display: grid;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}

.plan-card--dark .plan-specs {
    border-color: rgba(255, 255, 255, 0.14);
}

.plan-specs div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.plan-card--dark .plan-specs div {
    border-color: rgba(255, 255, 255, 0.14);
}

.plan-specs dt {
    color: var(--muted);
}

.plan-specs dd {
    margin: 0;
    text-align: right;
    font-weight: 750;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    padding: 0;
    color: var(--ink-soft);
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 22px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
}

.plan-card .button {
    width: 100%;
    margin-top: auto;
}

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

.link-card {
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(54, 185, 130, 0.55);
    box-shadow: var(--shadow);
}

.link-card span {
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.link-card h3 {
    margin: 28px 0 10px;
    font-size: 1.45rem;
    line-height: 1.14;
}

.link-card p {
    margin: 0;
    color: var(--muted);
}

.compare-table {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}

.compare-table div {
    display: grid;
    gap: 10px;
    min-height: 160px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.compare-table div:last-child {
    border-right: 0;
}

.compare-table strong {
    font-size: 1.2rem;
}

.compare-table span {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.feature-list article {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list h3,
.feature-list p,
.process h3,
.process p {
    margin: 0;
}

.feature-list h3 {
    font-size: 1.08rem;
}

.feature-list p {
    color: var(--muted);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.metric-grid article {
    min-height: 220px;
    padding: 26px;
    background: var(--surface);
}

.metric-grid h3 {
    margin: 0 0 36px;
    font-size: 1.2rem;
    line-height: 1.18;
}

.metric-grid p {
    margin: 0;
    color: var(--muted);
}

.section--process {
    color: #ffffff;
    background: var(--dark-soft);
}

.section--process .eyebrow {
    color: var(--amber);
}

.process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.process article {
    min-height: 230px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.045);
}

.process span {
    display: block;
    margin-bottom: 44px;
    color: var(--accent);
    font-weight: 850;
}

.process h3 {
    font-size: 1.3rem;
}

.process p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.66);
}

.timeline-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.timeline-list li {
    position: relative;
    padding: 22px 0 22px 34px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
}

.timeline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--accent);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 64px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

details {
    border-bottom: 1px solid var(--line);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 18px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 750;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-deep);
}

details[open] summary::after {
    content: "−";
}

details p {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--muted);
}

.contact {
    padding: 88px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(13, 18, 16, 0.96), rgba(13, 18, 16, 0.84)),
        url("../img/blink-host-infrastructure.png") center / cover no-repeat;
}

.contact--page {
    padding-top: 76px;
}

.contact .eyebrow {
    color: var(--accent);
}

.contact__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
    gap: 74px;
    align-items: start;
}

.contact h2 {
    max-width: 640px;
    margin: 0;
    font-size: 2.6rem;
    line-height: 1.05;
}

.contact p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.68);
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: #ffffff;
    background: rgba(13, 18, 16, 0.62);
    outline: 0;
}

.contact-form input {
    min-height: 46px;
    padding: 0 12px;
}

.contact-form textarea {
    min-height: 132px;
    padding: 12px;
    resize: vertical;
}

.selection-box {
    display: grid;
    gap: 10px;
    width: min(520px, 100%);
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.selection-box span {
    color: rgba(255, 255, 255, 0.72);
}

.selection-box strong {
    color: #ffffff;
}

.cta-band {
    padding: 64px 0;
    color: #ffffff;
    background: var(--dark-soft);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.08;
}

.auth-section {
    background: var(--paper);
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 0.7fr);
    gap: 72px;
    align-items: start;
}

.auth-aside h2 {
    max-width: 560px;
    margin: 0;
    font-size: 2.45rem;
    line-height: 1.06;
}

.mini-list {
    display: grid;
    gap: 12px;
    max-width: 460px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.mini-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
}

.auth-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.auth-card .notice {
    width: 100%;
    margin-top: 0;
}

.auth-card label {
    display: grid;
    gap: 7px;
}

.auth-card label > span,
.form-row,
.auth-alt {
    color: var(--muted);
    font-size: 0.92rem;
}

.auth-card label > span {
    font-weight: 750;
}

.auth-card input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: #ffffff;
    outline: 0;
}

.auth-card input:focus {
    border-color: rgba(54, 185, 130, 0.72);
    box-shadow: 0 0 0 3px rgba(54, 185, 130, 0.14);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.form-row a,
.auth-alt a {
    color: var(--accent-deep);
    font-weight: 800;
}

.form-check {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px !important;
}

.form-check input {
    flex: 0 0 18px;
    width: 18px;
    min-height: 18px;
    accent-color: var(--accent);
}

.form-check span {
    color: var(--muted);
    font-weight: 650;
}

.auth-card .button {
    width: 100%;
    margin-top: 4px;
}

.auth-alt {
    margin: 4px 0 0;
    text-align: center;
}

.admin-body {
    min-height: 100vh;
    background: #eef1ed;
}

.admin-topbar {
    position: sticky;
    z-index: 10;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 24px;
    color: #ffffff;
    background: var(--dark);
}

.admin-topbar nav {
    display: flex;
    gap: 8px;
}

.admin-topbar nav a {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.78);
}

.admin-topbar nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.admin-brand {
    color: #ffffff;
}

.admin-shell {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.admin-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}

.admin-heading--single {
    grid-template-columns: 1fr;
}

.admin-heading h1 {
    max-width: 760px;
    margin: 0;
    font-size: 2.9rem;
    line-height: 1.02;
}

.admin-heading p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
}

.admin-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.admin-search input {
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    outline: 0;
}

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

.admin-stats article,
.admin-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(18, 23, 21, 0.03);
}

.admin-stats article {
    min-height: 124px;
    padding: 20px;
}

.admin-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 750;
    text-transform: uppercase;
}

.admin-stats strong {
    display: block;
    margin-top: 18px;
    font-size: 2.1rem;
    line-height: 1;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.admin-panel {
    overflow: hidden;
}

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

.admin-panel__head h2 {
    margin: 0;
    font-size: 1.18rem;
}

.admin-mini-table {
    display: grid;
}

.admin-mini-table div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
}

.admin-mini-table div:last-child {
    border-bottom: 0;
}

.admin-mini-table span {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.admin-table {
    width: 100%;
    min-width: 1050px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.admin-table td:nth-child(1) {
    width: 190px;
}

.admin-table td:nth-child(3),
.admin-table td:nth-child(4),
.admin-table td:nth-child(5) {
    width: 190px;
}

.admin-table td:nth-child(6),
.admin-table td:nth-child(7) {
    max-width: 280px;
    overflow-wrap: anywhere;
}

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

.admin-table small {
    margin-top: 5px;
    color: var(--muted);
}

.admin-login {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(90deg, rgba(13, 18, 16, 0.92), rgba(13, 18, 16, 0.7)),
        url("../img/blink-host-infrastructure.png") center / cover no-repeat;
}

.admin-login__card {
    width: min(430px, 100%);
}

.admin-password-card {
    width: min(520px, 100%);
}

.admin-login__card h1 {
    margin: 10px 0 0;
    font-size: 2rem;
    line-height: 1.08;
}

.admin-login__card p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    padding: 28px 0;
    background: var(--paper);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.footer__inner .brand {
    color: var(--ink);
}

.footer__inner .brand__mark {
    border-color: rgba(18, 23, 21, 0.14);
}

.footer__inner p {
    margin: 0;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .header-actions {
        grid-column: 2;
        justify-self: end;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
        grid-column: 3;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--radius);
        background: rgba(13, 18, 16, 0.94);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        min-height: 44px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 82vh;
        padding-top: 116px;
    }

    .hero h1 {
        font-size: 4.2rem;
    }

    .section-heading,
    .split-section,
    .faq-shell,
    .contact__inner,
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .section-heading > .billing-toggle {
        grid-column: 1;
        grid-row: auto;
    }

    .pricing-grid,
    .process,
    .link-grid,
    .compare-table,
    .metric-grid,
    .admin-heading,
    .admin-stats,
    .admin-grid {
        grid-template-columns: 1fr;
    }

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

    .page-hero h1 {
        font-size: 3.25rem;
    }

    .compare-table div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .compare-table div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 700px) {
    .shell {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        width: calc(100% - 24px);
        margin-top: 12px;
        gap: 12px;
    }

    .hero {
        min-height: 86vh;
        max-height: none;
        padding: 104px 0 52px;
    }

    .page-hero {
        min-height: 380px;
        padding: 116px 0 58px;
    }

    .hero__image {
        background:
            linear-gradient(90deg, rgba(9, 13, 12, 0.98) 0%, rgba(9, 13, 12, 0.86) 62%, rgba(9, 13, 12, 0.44) 100%),
            url("../img/blink-host-infrastructure.png") center right / cover no-repeat;
    }

    .hero h1 {
        font-size: 3.15rem;
        line-height: 1;
    }

    .page-hero h1 {
        font-size: 2.55rem;
    }

    .hero__lead,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .domain-search {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .domain-search input,
    .domain-search button {
        min-height: 46px;
    }

    .hero__stats {
        position: relative;
        left: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        width: min(100% - 28px, 740px);
        margin: 34px auto 0;
        transform: none;
    }

    .hero__stats div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 18px;
        padding: 10px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero__stats div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading h2,
    .contact h2,
    .cta-band h2,
    .auth-aside h2,
    .admin-heading h1 {
        font-size: 2.1rem;
    }

    .billing-toggle {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-form {
        padding: 18px;
    }

    .auth-card {
        padding: 20px;
    }

    .form-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

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

    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .admin-topbar nav {
        width: 100%;
    }

    .admin-topbar nav a {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .brand span:last-child {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero__actions,
    .hero__actions .button,
    .domain-results a {
        width: 100%;
    }

    .price-value {
        font-size: 2.35rem;
    }

    .plan-card {
        padding: 22px;
    }
}
