:root,
html[data-theme='dark'] {
    --bg: #07111f;
    --bg-muted: #0d1a2f;
    --surface: rgba(13, 24, 43, 0.84);
    --surface-strong: #12233f;
    --surface-soft: rgba(20, 34, 60, 0.64);
    --card-border: rgba(154, 181, 255, 0.16);
    --text: #eff5ff;
    --text-muted: #a4b3d2;
    --heading: #ffffff;
    --primary: #48a3ff;
    --primary-strong: #1e7ef0;
    --primary-soft: rgba(72, 163, 255, 0.16);
    --secondary: #7ad3bf;
    --accent: #ffbf69;
    --success: #64d7a6;
    --danger: #ff8d88;
    --shadow: 0 18px 60px rgba(4, 8, 17, 0.36);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

html[data-theme='light'] {
    --bg: #f4f7fb;
    --bg-muted: #e9eff8;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.82);
    --card-border: rgba(39, 79, 150, 0.12);
    --text: #162134;
    --text-muted: #5d6980;
    --heading: #08111f;
    --primary: #165bcc;
    --primary-strong: #0a4ab8;
    --primary-soft: rgba(22, 91, 204, 0.1);
    --secondary: #149d7c;
    --accent: #ffae3d;
    --success: #0b9f6c;
    --danger: #c64b43;
    --shadow: 0 18px 50px rgba(18, 35, 63, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(72, 163, 255, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(122, 211, 191, 0.12), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-muted) 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 95%);
    pointer-events: none;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3 {
    color: var(--heading);
    line-height: 1.1;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2rem, 3.4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(10, 74, 184, 0.24);
}

.button-secondary {
    background: var(--surface-soft);
    color: var(--heading);
    border-color: var(--card-border);
    box-shadow: none;
}

.button-small {
    padding: 0.75rem 1rem;
}

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 31, 0.72);
    border-bottom: 1px solid var(--card-border);
}

html[data-theme='light'] .site-header {
    background: rgba(244, 247, 251, 0.8);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    min-height: 88px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-copy {
    display: block;
}

.brand--has-logo .brand-copy {
    display: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.brand-logo--footer {
    height: 42px;
}

.brand strong,
.brand small {
    display: block;
}

.brand-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    z-index: 5;
    display: grid;
    gap: 0.15rem;
    min-width: 240px;
    padding: 0.75rem 0.9rem;
    margin-left: 0.9rem;
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    color: #f8fbff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

html[data-theme='light'] .brand-tooltip {
    background: rgba(255, 255, 255, 0.98);
    color: var(--heading);
    border-color: rgba(13, 27, 45, 0.12);
}

.brand-tooltip strong,
.brand-tooltip small {
    display: block;
}

.brand-tooltip small {
    color: inherit;
    opacity: 0.78;
}

.brand-tooltip--footer {
    top: auto;
    bottom: calc(100% + 0.75rem);
    left: 0;
    margin-left: 0;
    transform: translateY(6px);
}

.brand--has-logo:hover .brand-tooltip,
.brand--has-logo:focus-visible .brand-tooltip,
.brand--has-logo:focus-within .brand-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.brand--has-logo:hover .brand-tooltip--footer,
.brand--has-logo:focus-visible .brand-tooltip--footer,
.brand--has-logo:focus-within .brand-tooltip--footer {
    transform: translateY(0);
}

.brand small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.site-nav a {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--text-muted);
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--heading);
    background: var(--primary-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--surface-soft);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--heading);
    margin: 4px auto;
}

.theme-toggle {
    border: 0;
    background: transparent;
    padding: 0;
}

.theme-toggle__track {
    display: inline-flex;
    align-items: center;
    width: 58px;
    height: 32px;
    padding: 4px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--card-border);
}

.theme-toggle__thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateX(0);
    transition: transform 0.2s ease;
}

html[data-theme='light'] .theme-toggle__thumb {
    transform: translateX(26px);
}

.hero-section,
.page-hero {
    padding: 6.5rem 0 4rem;
}

.hero-grid,
.page-hero__inner,
.final-cta,
.contact-grid,
.footer-grid,
.article-grid,
.service-grid,
.feature-grid,
.testimonial-grid,
.pricing-grid,
.domain-grid,
.post-grid,
.admin-stat-grid,
.admin-card-grid {
    display: grid;
    gap: 1.4rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
}

.hero-copy {
    max-width: 62ch;
    font-size: 1.1rem;
}

.hero-copy--muted {
    color: var(--text-muted);
    opacity: 0.92;
}

.hero-actions,
.final-cta__actions,
.stacked-actions,
.form-grid__actions,
.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-panel {
    position: relative;
    min-height: 360px;
}

.hero-panel__glow {
    position: absolute;
    inset: 20% 12% auto;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 163, 255, 0.35) 0%, transparent 70%);
    filter: blur(10px);
}

.hero-panel__card,
.hero-stats article,
.service-card,
.pricing-card,
.domain-card,
.feature-card,
.testimonial-card,
.content-card,
.contact-card,
.flash,
.catalog-alert,
.admin-card,
.admin-stat-card,
.admin-form-card,
.admin-accordion,
.admin-auth-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-panel__card {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-panel__card strong {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--heading);
}

.hero-panel__card ul,
.feature-list,
.footer-links,
.footer-contact,
.admin-list-plain,
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-panel__card li,
.feature-list li,
.footer-links li,
.footer-contact li,
.contact-list li,
.admin-list-plain li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.55rem;
    color: var(--text-muted);
}

.hero-panel__card li::before,
.feature-list li::before,
.footer-links li::before,
.contact-list li::before,
.admin-list-plain li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.hero-stats article,
.admin-stat-card {
    padding: 1.2rem;
}

.hero-stats strong,
.admin-stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: var(--heading);
}

.section {
    padding: 2rem 0 4rem;
}

.section-heading {
    margin-bottom: 1.7rem;
}

.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;
}

.section-heading--between {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.service-grid,
.feature-grid,
.testimonial-grid,
.pricing-grid,
.domain-grid,
.post-grid,
.admin-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-grid--featured-single-line {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.3rem;
}

.domain-grid--featured-single-line .domain-card {
    flex: 1 0 calc(25% - 0.75rem);
    min-width: 220px;
}

.pricing-grid--radio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.radio-plan {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(72, 163, 255, 0.16);
    background:
        radial-gradient(circle at top right, rgba(72, 163, 255, 0.2), transparent 36%),
        linear-gradient(180deg, rgba(8, 21, 38, 0.98) 0%, rgba(10, 24, 42, 0.9) 100%);
    box-shadow: 0 24px 48px rgba(4, 10, 18, 0.24);
    isolation: isolate;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

html[data-theme='light'] .radio-plan {
    background:
        radial-gradient(circle at top right, rgba(72, 163, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.98) 100%);
    border-color: rgba(72, 163, 255, 0.18);
    box-shadow: 0 18px 36px rgba(8, 20, 36, 0.08);
}

.radio-plan:hover {
    transform: translateY(-8px);
    border-color: rgba(72, 163, 255, 0.3);
    box-shadow: 0 30px 56px rgba(4, 10, 18, 0.34);
}

.radio-plan.is-featured {
    transform: translateY(-6px);
    border-color: rgba(122, 211, 191, 0.42);
    box-shadow: 0 26px 54px rgba(4, 10, 18, 0.34);
}

.radio-plan__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.06) 18%, transparent 34%);
    opacity: 0.9;
    pointer-events: none;
}

.radio-plan__decor {
    position: absolute;
    inset: auto auto -24px -18px;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.radio-plan__decor span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(122, 211, 191, 0.18);
    border-radius: 50%;
}

.radio-plan__decor span:nth-child(2) {
    inset: 14px;
    border-color: rgba(72, 163, 255, 0.16);
}

.radio-plan__decor span:nth-child(3) {
    inset: 28px;
    border-color: rgba(255, 191, 105, 0.14);
}

.radio-plan__equalizer {
    position: absolute;
    top: 1.05rem;
    right: 1rem;
    z-index: 0;
    display: flex;
    align-items: end;
    gap: 0.28rem;
    width: 74px;
    height: 42px;
    opacity: 0.52;
    pointer-events: none;
}

.radio-plan__equalizer span {
    flex: 1 1 auto;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(122, 211, 191, 0.95), rgba(72, 163, 255, 0.45));
    box-shadow: 0 0 18px rgba(72, 163, 255, 0.18);
}

.radio-plan__equalizer span:nth-child(1) {
    height: 38%;
}

.radio-plan__equalizer span:nth-child(2) {
    height: 80%;
}

.radio-plan__equalizer span:nth-child(3) {
    height: 56%;
}

.radio-plan__equalizer span:nth-child(4) {
    height: 100%;
}

.radio-plan__equalizer span:nth-child(5) {
    height: 48%;
}

.radio-plan__header {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.radio-plan__header h3 {
    margin: 0;
}

.radio-plan__lead,
.radio-plan__description {
    color: var(--text-muted);
}

.radio-plan__lead {
    margin: 0.35rem 0 0;
}

.radio-plan__description {
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.radio-plan__price {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    min-width: 112px;
    padding: 0.7rem 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

html[data-theme='light'] .radio-plan__price {
    background: rgba(8, 20, 36, 0.03);
    border-color: rgba(8, 20, 36, 0.08);
}

.radio-plan__price strong {
    color: var(--heading);
    font-size: 1.35rem;
}

.radio-plan__price span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.radio-plan__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.radio-plan__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(72, 163, 255, 0.12);
    border: 1px solid rgba(72, 163, 255, 0.18);
    color: var(--heading);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.radio-plan__features {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.radio-plan__features li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--text-muted);
}

.radio-plan__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 0 0 4px rgba(72, 163, 255, 0.08);
}

.radio-plan__details {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.radio-plan__details div {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme='light'] .radio-plan__details div {
    border-top-color: rgba(8, 20, 36, 0.08);
}

.radio-plan__details dt,
.radio-plan__details dd {
    margin: 0;
}

.radio-plan__details dt {
    color: var(--text-muted);
}

.radio-plan__details dd {
    color: var(--heading);
    text-align: right;
}

.radio-plan__button {
    position: relative;
    z-index: 1;
    min-height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border: 0;
    box-shadow: 0 14px 28px rgba(72, 163, 255, 0.22);
}

.radio-plan__button:hover {
    filter: brightness(1.05);
}

.domain-grid--home-featured {
    align-items: stretch;
}

.domain-search-panel {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.domain-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(72, 163, 255, 0.08) 0%, var(--surface) 100%);
}

.domain-search-form__field input {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--surface-soft);
    color: var(--heading);
}

.domain-search-result {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--surface-soft);
}

.domain-search-result.is-loading {
    color: var(--text-muted);
}

.domain-search-result.is-success {
    border-color: rgba(67, 199, 141, 0.4);
    background: rgba(67, 199, 141, 0.12);
    color: var(--heading);
}

.domain-search-result.is-warning {
    border-color: rgba(255, 191, 105, 0.35);
    background: rgba(255, 191, 105, 0.12);
    color: var(--heading);
}

.domain-search-result.is-error {
    border-color: rgba(255, 107, 107, 0.38);
    background: rgba(255, 107, 107, 0.12);
    color: var(--heading);
}

.domain-spotlight {
    flex: 1 0 calc(25% - 0.75rem);
    min-width: 250px;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    background: var(--surface);
}

.domain-spotlight.is-featured {
    border-color: rgba(72, 163, 255, 0.42);
    background: linear-gradient(180deg, rgba(72, 163, 255, 0.12) 0%, var(--surface) 100%);
}

.domain-spotlight__top {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
}

.domain-spotlight__top strong,
.domain-spotlight__top b {
    display: block;
    color: var(--heading);
}

.domain-spotlight__top strong {
    font-size: 1.45rem;
}

.domain-spotlight__top span,
.domain-spotlight__meta small {
    color: var(--text-muted);
}

.domain-spotlight__meta {
    display: grid;
    gap: 0.4rem;
}

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

.feature-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card,
.testimonial-card,
.post-card,
.content-card,
.contact-card,
.pricing-card,
.domain-card,
.admin-card,
.admin-form-card {
    padding: 1.5rem;
}

.service-card__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(122, 211, 191, 0.18));
}

.service-card a {
    color: var(--heading);
    font-weight: 700;
}

.section-pricing {
    position: relative;
}

.billing-switcher {
    display: inline-flex;
    gap: 0.45rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--card-border);
}

.billing-switcher button {
    padding: 0.65rem 0.85rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
}

.billing-switcher button.is-active {
    background: var(--primary);
    color: #fff;
}

.badge {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(255, 191, 105, 0.16);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card.is-featured,
.domain-card.is-featured {
    transform: translateY(-4px);
    border-color: rgba(72, 163, 255, 0.42);
    background: linear-gradient(180deg, rgba(72, 163, 255, 0.12) 0%, var(--surface) 100%);
}

.pricing-card__top,
.domain-card__header,
.footer-bottom,
.admin-section-heading,
.admin-form-card__header,
.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-card__lead,
.pricing-card__description,
.domain-card__summary,
.content-card__subtitle,
.section-note,
.admin-inline-note {
    color: var(--text-muted);
}

.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.price-box strong,
.domain-card__header strong {
    font-size: 1.5rem;
    color: var(--heading);
}

.limit-list,
.attribute-list,
.domain-prices {
    margin: 1rem 0;
}

.limit-list {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    list-style: none;
}

.limit-list li,
.attribute-list div,
.domain-prices div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--card-border);
}

.limit-list strong,
.attribute-list dd,
.domain-prices dd {
    margin: 0;
    color: var(--heading);
    text-align: right;
}

.attribute-list dt,
.domain-prices dt {
    color: var(--text-muted);
}

.domain-table-wrap {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.domain-table-wrap h3 {
    margin: 0 0 1rem;
}

.domain-table-scroll {
    overflow-x: auto;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.domain-table th,
.domain-table td {
    padding: 0.7rem 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
    white-space: nowrap;
}

.domain-table th {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.domain-table td {
    color: var(--heading);
}

.domain-table td:last-child,
.domain-table th:last-child {
    text-align: right;
}

.domain-table-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.link-inline {
    color: var(--primary);
    font-weight: 600;
}

.link-inline:hover {
    color: var(--primary-strong);
}

.catalog-alert,
.flash {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
}

.catalog-alert {
    grid-column: 1 / -1;
}

.flash-success {
    border-color: rgba(100, 215, 166, 0.38);
    background: rgba(100, 215, 166, 0.12);
}

.flash-error {
    border-color: rgba(255, 141, 136, 0.32);
    background: rgba(255, 141, 136, 0.12);
}

.section-accent,
.section-final-cta {
    position: relative;
}

.feature-card--compact,
.testimonial-card,
.post-card,
.content-card--legal {
    min-height: 100%;
}

.post-card {
    overflow: hidden;
}

.post-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--card-border);
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.post-card__meta small {
    color: var(--text-muted);
}

.post-card__content {
    color: var(--text-muted);
}

.post-card__title-link {
    color: var(--heading);
}

.post-card__title-link:hover {
    color: var(--primary);
}

.post-card__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.post-card__author {
    margin-top: 1rem;
    color: var(--heading);
    font-weight: 600;
}

.post-card.is-featured {
    border-color: rgba(72, 163, 255, 0.42);
    background: linear-gradient(180deg, rgba(72, 163, 255, 0.1) 0%, var(--surface) 100%);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    background: var(--surface);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 0;
    background: transparent;
    color: var(--heading);
    text-align: left;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 14px;
    height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded='true'] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 1.2rem 1.2rem;
}

.final-cta,
.contact-grid {
    align-items: start;
}

.final-cta,
.contact-card--accent {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(72, 163, 255, 0.18) 0%, rgba(122, 211, 191, 0.12) 100%);
    border: 1px solid var(--card-border);
}

.contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

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

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

label {
    display: grid;
    gap: 0.45rem;
    color: var(--heading);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--surface-soft);
    color: var(--heading);
}

textarea {
    resize: vertical;
}

.field-error {
    color: var(--danger);
}

.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    margin-bottom: 1.5rem;
}

.footer-copy {
    max-width: 35ch;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    align-items: center;
}

.page-hero--service,
.page-hero--centered {
    text-align: center;
}

.page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

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

.article-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.post-article {
    display: grid;
    gap: 1.5rem;
}

.post-article__media {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.post-article__header {
    display: grid;
    gap: 1rem;
}

.post-article__lead {
    margin: 0;
    color: var(--heading);
    font-size: 1.1rem;
    line-height: 1.7;
}

.post-article__content {
    color: var(--text-muted);
    line-height: 1.85;
}

.post-article__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.post-article__backlink {
    color: var(--heading);
    font-weight: 700;
}

.content-card__body {
    color: var(--text-muted);
}

.admin-shell,
.admin-auth-body {
    background: linear-gradient(180deg, #06111e 0%, #0a1830 100%);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    border-right: 1px solid var(--card-border);
    background: rgba(8, 17, 31, 0.94);
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    margin-bottom: 1.6rem;
}

.admin-nav {
    display: grid;
    gap: 0.45rem;
}

.admin-nav__section {
    display: grid;
    gap: 0.35rem;
}

.admin-nav__section + .admin-nav__section {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-nav__section p {
    margin: 0 0 0.1rem;
    padding: 0 0.85rem;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-nav a {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    color: var(--text-muted);
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: var(--primary-soft);
    color: var(--heading);
}

.admin-sidebar__footer {
    margin-top: auto;
    padding-top: 1rem;
}

.admin-sidebar__footer strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--heading);
}

.admin-sidebar__footer p {
    margin: 0 0 0.9rem;
    color: var(--text-muted);
}

.admin-main {
    padding: 1.6rem;
}

.admin-topbar {
    align-items: center;
    margin-bottom: 1rem;
}

.admin-content {
    display: grid;
    gap: 1.4rem;
}

.admin-panel-section {
    display: grid;
    gap: 1rem;
}

.admin-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-accordion-list,
.admin-subsection-list {
    display: grid;
    gap: 1rem;
}

.admin-accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    list-style: none;
}

.admin-accordion summary::-webkit-details-marker {
    display: none;
}

.admin-accordion__body {
    padding: 0 1.4rem 1.4rem;
}

.admin-form-card--nested {
    box-shadow: none;
    background: var(--surface-soft);
}

.admin-form-card--accent {
    border-style: dashed;
}

.admin-media-preview {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-media-preview img,
.admin-media-preview__placeholder {
    width: 96px;
    height: 96px;
    border-radius: 16px;
}

.admin-media-preview img {
    object-fit: cover;
}

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

.admin-brand-field {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand-field__inputs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-brand-preview-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand-preview-card .eyebrow {
    margin-bottom: 0.65rem;
}

.admin-brand-preview {
    display: grid;
    place-items: center;
    min-height: 120px;
    padding: 1rem;
    border-radius: 16px;
    background: var(--surface-soft);
    border: 1px dashed var(--card-border);
    overflow: hidden;
}

.admin-brand-preview span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.admin-brand-preview img {
    display: block;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.admin-brand-preview--favicon img {
    max-width: 48px;
    max-height: 48px;
}

@media (max-width: 920px) {
    .domain-search-form {
        grid-template-columns: 1fr;
    }

    .brand-tooltip,
    .brand-tooltip--footer {
        display: none;
    }

    .admin-brand-field__inputs,
    .admin-brand-preview-grid {
        grid-template-columns: 1fr;
    }
}

.admin-media-preview__placeholder {
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.admin-media-preview__details {
    display: grid;
    gap: 0.3rem;
}

.admin-media-preview__details p {
    margin: 0;
    color: var(--text-muted);
}

.admin-media-preview__details a {
    color: var(--heading);
    font-weight: 700;
}

.admin-empty-state {
    text-align: center;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.checkbox-inline input {
    width: 18px;
    height: 18px;
    padding: 0;
}

.admin-list-ordered {
    list-style: decimal;
    padding-left: 1.2rem;
}

.admin-list-ordered li {
    padding-left: 0;
}

.admin-list-ordered li::before {
    content: none;
}

.admin-auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.admin-auth-card {
    width: min(520px, 100%);
    padding: 2rem;
}

.admin-auth-form {
    grid-template-columns: 1fr;
}

.stacked-actions {
    flex-direction: column;
}

.section-note {
    margin-top: 1rem;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1100px) {
    .hero-grid,
    .footer-grid,
    .contact-grid,
    .feature-grid--compact,
    .admin-layout,
    .admin-stat-grid,
    .service-grid,
    .feature-grid,
    .testimonial-grid,
    .pricing-grid,
    .domain-grid,
    .post-grid,
    .admin-card-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        grid-template-columns: auto auto auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-strong);
        border: 1px solid var(--card-border);
        box-shadow: var(--shadow);
    }

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

    .menu-toggle {
        display: inline-block;
    }

    .header-actions .button-secondary {
        display: none;
    }

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

@media (max-width: 760px) {
    .domain-spotlight,
    .domain-grid--featured-single-line .domain-card {
        min-width: 210px;
    }

    .hero-section,
    .page-hero {
        padding-top: 5rem;
    }

    .hero-grid,
    .footer-grid,
    .contact-grid,
    .service-grid,
    .feature-grid,
    .testimonial-grid,
    .pricing-grid,
    .domain-grid,
    .post-grid,
    .admin-card-grid,
    .article-grid,
    .admin-stat-grid,
    .admin-card-grid--two {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-heading--between,
    .pricing-card__top,
    .radio-plan__header,
    .domain-card__header,
    .footer-bottom,
    .admin-topbar,
    .admin-section-heading {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

    .header-actions {
        justify-content: flex-end;
    }

    .header-actions .button {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
