:root {
    --ink: #162033;
    --ink-soft: #47536a;
    --navy: #102b52;
    --navy-deep: #091a34;
    --blue: #1769e0;
    --blue-dark: #0f55bd;
    --blue-pale: #eaf2ff;
    --teal: #087d78;
    --green: #247451;
    --red: #a63d4b;
    --surface: #ffffff;
    --surface-alt: #f3f6f9;
    --surface-deep: #e8edf3;
    --line: #d9e0e8;
    --line-strong: #c4ceda;
    --muted: #6a7689;
    --shadow-sm: 0 8px 26px rgba(16, 43, 82, 0.08);
    --shadow-lg: 0 24px 70px rgba(16, 43, 82, 0.14);
    --rail: min(1380px, calc(100% - 64px));
    --header-height: 114px;
    --font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font);
}

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

img {
    max-width: 100%;
}

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

h1,
h2,
h3,
strong {
    font-weight: 750;
}

.content-rail {
    width: var(--rail);
    margin-inline: auto;
}

.section-pad {
    padding-block: 104px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 14px;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line-strong);
    transform: translateY(-160%);
}

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

.eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.button-primary,
.button-secondary,
.button-light,
.button-plan,
.nav-contact {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.93rem;
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
    background: var(--blue);
    color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--ink);
    background: #fff;
    color: var(--ink);
}

.button-light {
    background: #fff;
    color: var(--navy-deep);
}

.button-light:hover {
    background: var(--blue-pale);
    color: var(--navy-deep);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-weight: 750;
}

.text-link:hover {
    color: var(--blue-dark);
}

.icon-button {
    position: relative;
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
}

.site-header {
    position: relative;
    z-index: 1000;
    height: var(--header-height);
    background: #fff;
}

.utility-bar {
    height: 34px;
    background: var(--navy-deep);
    color: #dce7f5;
}

.utility-inner {
    display: flex;
    height: 34px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    font-weight: 650;
}

.utility-inner > span,
.utility-inner nav,
.utility-inner nav a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-inner nav {
    gap: 24px;
}

.utility-inner a:hover {
    color: #fff;
}

.main-nav-wrap {
    height: 80px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.site-header.is-scrolled .main-nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    height: 80px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 1.55rem;
    font-weight: 850;
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-self: stretch;
    margin-left: clamp(38px, 5vw, 88px);
}

.nav-group {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-group-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 17px;
    color: #26344a;
    font-size: 0.88rem;
    font-weight: 720;
}

.nav-group-trigger i {
    font-size: 0.68rem;
    transition: transform 180ms ease;
}

.nav-group:hover .nav-group-trigger,
.nav-group:focus-within .nav-group-trigger {
    color: var(--blue);
}

.nav-group:hover .nav-group-trigger i,
.nav-group:focus-within .nav-group-trigger i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    display: grid;
    width: min(780px, calc(100vw - 80px));
    grid-template-columns: 245px 1fr;
    visibility: hidden;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(9px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-intro {
    padding: 32px;
    background: var(--navy);
    color: #fff;
}

.mega-intro > span {
    display: block;
    margin-bottom: 14px;
    font-size: 1.12rem;
    font-weight: 800;
}

.mega-intro p {
    color: #c9d7e9;
    font-size: 0.86rem;
    line-height: 1.55;
}

.mega-intro a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 750;
}

.mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
}

.mega-links > a {
    display: grid;
    min-height: 98px;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #edf0f4;
    color: var(--ink);
}

.mega-links > a:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.mega-links > a:hover {
    background: var(--surface-alt);
}

.mega-links > a > i:first-child {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
}

.mega-links > a > i:last-child {
    color: #9aa6b5;
    font-size: 0.8rem;
}

.mega-links span {
    min-width: 0;
}

.mega-links strong,
.mega-links small {
    display: block;
}

.mega-links strong {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.mega-links small {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

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

.cart-button span {
    position: absolute;
    top: -4px;
    right: -3px;
    display: grid;
    min-width: 19px;
    height: 19px;
    place-items: center;
    padding-inline: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 0.63rem;
    font-weight: 800;
}

.nav-contact {
    min-height: 44px;
    margin-left: 4px;
    background: var(--navy);
    color: #fff;
}

.nav-contact:hover {
    background: var(--blue);
    color: #fff;
}

.mobile-menu-button {
    display: none;
}

.mobile-navigation {
    width: min(430px, 100%);
}

.mobile-navigation .offcanvas-header {
    min-height: 78px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-list {
    display: grid;
}

.mobile-nav-list details,
.mobile-nav-list > a {
    border-bottom: 1px solid var(--line);
}

.mobile-nav-list summary,
.mobile-nav-list > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 14px 4px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.mobile-nav-list summary i {
    margin-left: auto;
}

.mobile-nav-list details > a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 15px;
    background: var(--surface-alt);
}

.mobile-nav-list details > a > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--blue);
}

.mobile-nav-list details > a strong,
.mobile-nav-list details > a small {
    display: block;
}

.mobile-nav-list details > a small {
    color: var(--muted);
    font-size: 0.75rem;
}

.mobile-nav-list .mobile-overview {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-weight: 750;
}

.cart-canvas {
    width: min(480px, 100%);
}

.cart-canvas .offcanvas-header {
    min-height: 106px;
    align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}

.cart-canvas h2 {
    margin: 0;
    font-size: 1.45rem;
}

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

.cart-empty {
    display: grid;
    min-height: 230px;
    place-items: center;
    align-content: center;
    color: var(--muted);
    text-align: center;
}

.cart-empty i {
    margin-bottom: 12px;
    font-size: 2rem;
}

.cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.cart-line small,
.cart-line strong,
.cart-line span {
    display: block;
}

.cart-line small {
    color: var(--blue);
    font-size: 0.66rem;
    font-weight: 800;
}

.cart-line strong {
    margin-block: 2px;
    font-size: 0.93rem;
}

.cart-line span {
    color: var(--muted);
    font-size: 0.78rem;
}

.cart-summary {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-summary span {
    color: var(--muted);
}

.home-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #dfe5eb;
}

.home-hero-media,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-media {
    background-image: url('/assets/everworkx-2026/img/everworkx-production-hero-2026.jpg');
    background-position: center;
    background-size: cover;
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.94) 35%, rgba(247, 249, 251, 0.56) 55%, rgba(247, 249, 251, 0.08) 79%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 650px;
    align-content: center;
    padding-block: 68px 92px;
}

.home-hero-copy {
    width: min(700px, 58%);
}

.home-hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--navy-deep);
    font-size: clamp(3rem, 5.2vw, 5.25rem);
    line-height: 1.01;
}

.home-hero-copy > p {
    max-width: 630px;
    margin-bottom: 30px;
    color: #344158;
    font-size: 1.12rem;
    line-height: 1.68;
}

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

.hero-proof {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 76px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    border-top: 1px solid rgba(16, 43, 82, 0.16);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(13px);
}

.hero-proof > div {
    display: grid;
    min-height: 45px;
    align-content: center;
    padding-inline: 26px;
    border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
    padding-left: 0;
}

.hero-proof > div:last-child {
    border-right: 0;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 0.9rem;
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.75rem;
}

.domain-finder {
    padding-block: 80px;
    background: var(--navy);
    color: #fff;
}

.domain-finder-compact {
    padding-block: 48px;
}

.domain-finder .content-rail {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(580px, 1.3fr);
    gap: 54px;
    align-items: end;
}

.domain-finder-heading .eyebrow {
    color: #8bb9ff;
}

.domain-finder-heading h2 {
    max-width: 520px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
}

.domain-finder-heading p {
    max-width: 590px;
    margin-top: 18px;
    margin-bottom: 0;
    color: #c9d7e9;
}

.domain-finder-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 10px;
    align-items: center;
}

.domain-finder-form > label {
    position: relative;
    margin: 0;
}

.domain-finder-form > label i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 1;
    color: var(--blue);
    transform: translateY(-50%);
}

.domain-finder-form input[type='text'] {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 46px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-size: 1rem;
    outline: 0;
}

.domain-finder-form input[type='text']:focus {
    border-color: #8bb9ff;
    box-shadow: 0 0 0 3px rgba(139, 185, 255, 0.22);
}

.domain-tlds {
    display: flex;
    grid-column: 1 / -1;
    min-height: 46px;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.domain-tld-picker {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    gap: 5px;
    min-width: 230px;
}

.domain-finder-form > .button-primary {
    grid-column: 3;
    grid-row: 1;
}

.domain-tld-picker .domain-tld-input input[type='text'] {
    height: 44px;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.domain-tld-input {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
}

.domain-tld-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.domain-tld-picker > small {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.domain-tlds label {
    margin: 0;
    cursor: pointer;
}

.domain-tlds input {
    position: absolute;
    opacity: 0;
}

.domain-tlds span {
    display: grid;
    min-width: 46px;
    height: 44px;
    place-items: center;
    border-radius: 3px;
    color: #d8e4f2;
    font-size: 0.8rem;
    font-weight: 750;
}

.domain-tlds input:checked + span {
    background: #fff;
    color: var(--navy);
}

.domain-finder-form .button-primary {
    min-height: 54px;
    background: #fff;
    color: var(--navy);
}

.domain-finder-form .button-primary:hover {
    background: var(--blue-pale);
}

.domain-search-status,
.domain-results {
    grid-column: 1 / -1;
}

.domain-search-status {
    min-height: 0;
    margin-top: 2px;
    color: #d4dfed;
    font-size: 0.84rem;
}

.domain-search-status:not(:empty) {
    min-height: 24px;
}

.domain-results {
    display: grid;
    gap: 1px;
    margin-top: 6px;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.domain-result {
    display: grid;
    min-height: 72px;
    grid-template-columns: 28px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: #fff;
    color: var(--ink);
}

.domain-result > i {
    color: var(--green);
    font-size: 1.1rem;
}

.domain-result.is-taken > i {
    color: var(--red);
}

.domain-result.is-unknown > i {
    color: var(--muted);
}

.domain-result strong,
.domain-result small {
    display: block;
}

.domain-result strong {
    font-size: 1rem;
}

.domain-result small {
    color: var(--muted);
    font-size: 0.73rem;
}

.domain-result-price {
    text-align: right;
}

.domain-result-price strong {
    font-size: 0.9rem;
}

.domain-result-price small {
    font-size: 0.66rem;
}

.domain-result .button-primary {
    min-height: 42px;
    padding: 9px 14px;
}

.spam-field {
    position: fixed !important;
    top: -10000px !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.4vw, 3.65rem);
    line-height: 1.08;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.section-heading-wide {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 80px;
    align-items: end;
}

.section-heading-wide h2 {
    margin-bottom: 0;
}

.offer-navigation {
    background: #fff;
}

.offer-lines {
    border-top: 1px solid var(--line-strong);
}

.offer-lines > a {
    display: grid;
    min-height: 132px;
    grid-template-columns: 46px 54px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    transition: background-color 180ms ease, padding 180ms ease;
}

.offer-lines > a:hover {
    padding-inline: 20px;
    background: var(--surface-alt);
}

.offer-lines > a > span {
    color: #98a4b4;
    font-size: 0.78rem;
    font-weight: 750;
}

.offer-lines > a > i:nth-child(2) {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    color: var(--blue);
    font-size: 1.25rem;
}

.offer-lines h3,
.offer-lines strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.35rem;
}

.offer-lines p {
    margin: 0;
    color: var(--muted);
}

.offer-lines > a > i:last-child {
    color: var(--blue);
}

.panel-showcase {
    background: var(--surface-alt);
}

.panel-showcase-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
    gap: 90px;
    align-items: center;
}

.panel-showcase-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.1rem, 3.7vw, 4rem);
    line-height: 1.07;
}

.panel-showcase-copy p {
    color: var(--ink-soft);
}

.price-callout {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-block: 28px 20px;
}

.price-callout strong {
    color: var(--navy);
    font-size: 2rem;
}

.price-callout span {
    color: var(--muted);
    font-size: 0.78rem;
}

.controlpanel-preview {
    overflow: hidden;
    border: 1px solid #cfd7e1;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.preview-top {
    display: flex;
    height: 48px;
    align-items: center;
    gap: 7px;
    padding-inline: 16px;
    border-bottom: 1px solid var(--line);
    background: #f7f9fb;
}

.preview-top > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8c1cd;
}

.preview-top strong {
    margin-left: 10px;
    color: #4b586b;
    font-size: 0.72rem;
}

.preview-layout {
    display: grid;
    min-height: 470px;
    grid-template-columns: 66px 1fr;
}

.preview-layout aside {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 18px 11px;
    background: var(--navy-deep);
}

.preview-layout aside i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 4px;
    color: #8fa5c2;
}

.preview-layout aside i:first-child {
    background: var(--blue);
    color: #fff;
}

.preview-main {
    padding: 30px;
    background: #f6f8fb;
}

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

.preview-heading small,
.preview-heading strong {
    display: block;
}

.preview-heading small {
    color: var(--muted);
    font-size: 0.65rem;
}

.preview-heading strong {
    font-size: 1.05rem;
}

.preview-heading > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-size: 0.67rem;
    font-weight: 700;
}

.preview-heading > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38a672;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-block: 28px;
}

.preview-metrics > div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
}

.preview-metrics small,
.preview-metrics strong,
.preview-metrics i {
    display: block;
}

.preview-metrics small {
    color: var(--muted);
    font-size: 0.65rem;
}

.preview-metrics strong {
    margin-block: 5px 13px;
    font-size: 1.25rem;
}

.preview-metrics i {
    position: relative;
    height: 4px;
    overflow: hidden;
    background: #e7ebf1;
}

.preview-metrics i::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--value);
    background: var(--blue);
    content: '';
}

.preview-table {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
}

.preview-table span {
    height: 39px;
    border-bottom: 1px solid #edf0f4;
    background: linear-gradient(90deg, #dfe5ec 0 18%, transparent 18% 25%, #edf0f4 25% 58%, transparent 58% 64%, #e6f4ee 64% 77%, transparent 77%);
}

.services-home {
    background: #fff;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line-strong);
    border: 1px solid var(--line-strong);
}

.service-feature {
    position: relative;
    display: flex;
    min-height: 410px;
    flex-direction: column;
    padding: 34px;
    background: #fff;
    transition: background-color 180ms ease;
}

.service-feature:hover {
    background: var(--surface-alt);
}

.service-feature > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-feature > div:first-child i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    font-size: 1.15rem;
}

.service-monitoring > div:first-child {
    color: var(--teal);
}

.service-monitoring > div:first-child i {
    background: #e4f5f2;
}

.service-workflows > div:first-child {
    color: var(--navy);
}

.service-workflows > div:first-child i {
    background: #e8edf4;
}

.service-feature h3 {
    margin-bottom: 17px;
    font-size: 1.75rem;
    line-height: 1.18;
}

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

.service-feature > strong {
    margin-top: auto;
    color: var(--navy);
    font-size: 0.88rem;
}

.service-feature > i:last-child {
    position: absolute;
    right: 29px;
    bottom: 29px;
    color: var(--blue);
}

.infrastructure-strip {
    background: var(--navy-deep);
    color: #fff;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
    gap: 100px;
    align-items: center;
}

.infrastructure-grid .eyebrow {
    color: #83b5ff;
}

.infrastructure-grid h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.06;
}

.infrastructure-grid p {
    color: #c7d4e6;
}

.infra-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.infra-spec-list > div {
    display: flex;
    min-height: 130px;
    align-items: center;
    gap: 17px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.infra-spec-list > div:nth-child(2n) {
    border-right: 0;
}

.infra-spec-list > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.infra-spec-list > div > i {
    color: #84b7ff;
    font-size: 1.4rem;
}

.infra-spec-list strong,
.infra-spec-list small {
    display: block;
}

.infra-spec-list small {
    color: #aebed2;
    font-size: 0.76rem;
}

.account-cta {
    background: #e9eef4;
}

.account-cta-inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.account-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1.06;
}

.account-cta p {
    color: var(--ink-soft);
}

.breadcrumbs {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.72rem;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.breadcrumbs i {
    font-size: 0.55rem;
}

.editorial-hero {
    position: relative;
    display: grid;
    min-height: 560px;
    align-items: center;
    overflow: hidden;
    background: var(--surface-alt);
}

.editorial-hero .content-rail {
    position: relative;
    z-index: 2;
}

.editorial-hero h1 {
    max-width: 1000px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: 0.98;
}

.editorial-hero p {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 1.13rem;
}

.compact-hero {
    min-height: 430px;
}

.compact-hero h1 {
    max-width: 900px;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.services-editorial-hero {
    color: #fff;
    background: var(--navy-deep);
}

.editorial-hero-media,
.editorial-hero-overlay {
    position: absolute;
    inset: 0;
}

.editorial-hero-media {
    background-image: url('/assets/everworkx-2026/img/everworkx-api-hero-v3.jpg');
    background-position: center;
    background-size: cover;
}

.editorial-hero-overlay {
    background: linear-gradient(90deg, rgba(9, 26, 52, 0.98) 0%, rgba(9, 26, 52, 0.94) 47%, rgba(9, 26, 52, 0.36) 78%);
}

.services-editorial-hero p {
    color: #cad7e8;
}

.services-editorial-hero .eyebrow {
    color: #84b7ff;
}

.services-editorial-hero .button-secondary,
.product-hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff;
}

.services-editorial-hero .button-secondary:hover,
.product-hero .button-secondary:hover {
    background: #fff;
    color: var(--navy);
}

.software-index {
    background: #fff;
}

.software-product-row {
    position: relative;
    display: grid;
    min-height: 250px;
    grid-template-columns: 70px minmax(0, 1fr) 220px 30px;
    align-items: center;
    gap: 34px;
    border-top: 1px solid var(--line-strong);
}

.software-product-row:last-child {
    border-bottom: 1px solid var(--line-strong);
}

.software-product-row:hover {
    background: linear-gradient(90deg, transparent, var(--surface-alt) 8%, var(--surface-alt) 92%, transparent);
}

.software-product-number {
    color: #9ba7b6;
    font-weight: 750;
}

.software-product-main > span {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.software-product-main h2 {
    margin-block: 8px 12px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.software-product-main p {
    max-width: 740px;
    margin-bottom: 0;
    color: var(--muted);
}

.software-product-price strong,
.software-product-price span {
    display: block;
}

.software-product-price strong {
    font-size: 1.15rem;
}

.software-product-price span {
    color: var(--muted);
    font-size: 0.72rem;
}

.software-product-row > i {
    color: var(--blue);
}

.product-hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
}

.product-hero-bg,
.product-hero-overlay {
    position: absolute;
    inset: 0;
}

.product-hero-bg {
    background-image: url('/assets/everworkx-2026/img/everworkx-production-hero-2026.jpg');
    background-position: center;
    background-size: cover;
}

.product-hero-overlay {
    background: linear-gradient(90deg, rgba(9, 26, 52, 0.99) 0%, rgba(9, 26, 52, 0.92) 50%, rgba(9, 26, 52, 0.4) 100%);
}

.product-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 570px;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 90px;
    align-items: center;
    padding-block: 70px;
}

.product-hero-content > div:first-child {
    max-width: 830px;
}

.product-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 6vw, 6rem);
    line-height: 0.98;
}

.product-hero-content > div:first-child > p {
    max-width: 720px;
    color: #d1ddec;
    font-size: 1.12rem;
}

.product-hero .eyebrow {
    color: #84b7ff;
}

.product-price-panel,
.hero-fact-list {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 5px;
    background: rgba(12, 34, 66, 0.76);
    backdrop-filter: blur(12px);
}

.product-price-panel small,
.product-price-panel strong,
.product-price-panel > span {
    display: block;
}

.product-price-panel small {
    color: #9fb2ca;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.product-price-panel > strong {
    margin-block: 7px;
    font-size: 2.5rem;
}

.product-price-panel > span {
    color: #b9c8db;
    font-size: 0.78rem;
}

.product-price-panel ul {
    display: grid;
    gap: 9px;
    margin: 25px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.product-price-panel li {
    display: flex;
    gap: 9px;
    color: #e3ebf5;
    font-size: 0.8rem;
}

.anchor-navigation {
    position: sticky;
    top: 80px;
    z-index: 50;
    overflow: auto hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
}

.anchor-navigation .content-rail {
    display: flex;
    min-width: max-content;
}

.anchor-navigation a {
    display: flex;
    height: 54px;
    align-items: center;
    padding-inline: 17px;
    border-right: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.anchor-navigation a:hover {
    color: var(--blue);
}

.panel-intro {
    background: #fff;
}

.panel-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 100px;
}

.panel-intro h2 {
    font-size: clamp(2.3rem, 4.2vw, 4.35rem);
    line-height: 1.05;
}

.panel-intro-grid > div:last-child > p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.panel-intro dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 36px 0 0;
    border-top: 1px solid var(--line);
}

.panel-intro dl > div {
    padding: 18px 14px 0 0;
}

.panel-intro dt {
    color: var(--navy);
    font-size: 1.25rem;
}

.panel-intro dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.feature-ledger {
    background: var(--surface-alt);
}

.feature-ledger article {
    display: grid;
    min-height: 310px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
    gap: 90px;
    align-items: center;
    border-top: 1px solid var(--line-strong);
}

.feature-ledger article:last-child {
    border-bottom: 1px solid var(--line-strong);
}

.feature-ledger-title {
    display: grid;
    grid-template-columns: 40px 52px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.feature-ledger-title > span {
    padding-top: 14px;
    color: #9aa6b5;
    font-size: 0.72rem;
    font-weight: 800;
}

.feature-ledger-title > i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 1.2rem;
}

.feature-ledger h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.feature-ledger-title p {
    margin: 0;
    color: var(--muted);
}

.feature-ledger article > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-ledger li {
    display: flex;
    gap: 10px;
    color: #344158;
    font-size: 0.88rem;
}

.feature-ledger li i {
    flex: 0 0 auto;
    color: var(--blue);
}

.technical-facts {
    background: #fff;
}

.comparison-table-wrap {
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.comparison-table tbody th {
    width: 22%;
    background: var(--surface-alt);
}

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

.closing-band {
    padding-block: 76px;
    background: var(--blue);
    color: #fff;
}

.closing-band .content-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;
}

.closing-band .eyebrow {
    color: #d6e6ff;
}

.closing-band h2 {
    margin-bottom: 13px;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.08;
}

.closing-band p {
    max-width: 760px;
    margin: 0;
    color: #e3edff;
}

.hosting-product-hero .product-hero-bg {
    background-image: url('/assets/everworkx-2026/img/everworkx-cloud-hero-v2.jpg');
}

.hero-fact-list {
    display: grid;
    gap: 18px;
}

.hero-fact-list > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-fact-list > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hero-fact-list > div > i {
    color: #8bb9ff;
    font-size: 1.25rem;
}

.hero-fact-list strong,
.hero-fact-list small {
    display: block;
}

.hero-fact-list small {
    color: #b6c7db;
    font-size: 0.72rem;
}

.hosting-plans {
    background: #fff;
}

.hosting-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hosting-plan {
    position: relative;
    display: flex;
    min-height: 610px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    background: #fff;
}

.hosting-plan.is-highlighted {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-sm);
}

.plan-recommendation {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 10px;
    background: var(--blue);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hosting-plan-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.hosting-plan-title i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 1.2rem;
}

.hosting-plan h3 {
    margin: 0;
    font-size: 1.25rem;
}

.hosting-plan > p {
    min-height: 112px;
    color: var(--muted);
    font-size: 0.86rem;
}

.hosting-plan-price {
    display: flex;
    min-height: 82px;
    align-items: baseline;
    gap: 7px;
    margin-block: 12px 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.hosting-plan-price > small {
    color: var(--muted);
    font-size: 0.7rem;
}

.hosting-plan-price > strong {
    color: var(--navy);
    font-size: 2.35rem;
    line-height: 1;
}

.hosting-plan-price > span {
    color: var(--muted);
    font-size: 0.64rem;
    line-height: 1.3;
}

.hosting-plan-price .price-on-request {
    align-self: center;
    font-size: 1.55rem;
}

.hosting-plan > ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.hosting-plan li {
    display: flex;
    gap: 9px;
    color: #39465a;
    font-size: 0.8rem;
}

.hosting-plan li i {
    color: var(--blue);
}

.plan-term {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.72rem;
}

.button-plan {
    width: 100%;
    border-color: var(--navy);
    background: #fff;
    color: var(--navy);
}

.button-plan:hover {
    background: var(--navy);
    color: #fff;
}

.hosting-comparison {
    background: var(--surface-alt);
}

.hosting-table th:not(:first-child),
.hosting-table td:not(:first-child) {
    text-align: center;
}

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
}

.faq-grid h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
}

.faq-grid > div:first-child p {
    color: var(--ink-soft);
}

.accordion-item {
    border-color: var(--line) !important;
}

.accordion-button {
    padding: 23px 4px;
    background: transparent !important;
    color: var(--ink) !important;
    font-weight: 720;
    box-shadow: none !important;
}

.accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.accordion-body {
    padding: 0 4px 24px;
    color: var(--ink-soft);
}

.service-area-index {
    background: #fff;
}

.service-area-rows {
    border-top: 1px solid var(--line-strong);
}

.service-area-row {
    display: grid;
    min-height: 260px;
    grid-template-columns: 44px 62px minmax(0, 1fr) 170px;
    gap: 28px;
    align-items: center;
    border-bottom: 1px solid var(--line-strong);
}

.service-area-row:hover {
    background: var(--surface-alt);
}

.service-area-number {
    color: #99a5b4;
    font-size: 0.75rem;
    font-weight: 800;
}

.service-area-row > i {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 1.45rem;
}

.service-area-monitoring > i {
    background: #e5f5f2;
    color: var(--teal);
}

.service-area-workflows > i {
    background: #e8edf4;
    color: var(--navy);
}

.service-area-row > div > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-area-row h2 {
    margin-block: 7px 12px;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.service-area-row p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
}

.service-area-meta {
    text-align: right;
}

.service-area-meta strong,
.service-area-meta span {
    display: block;
}

.service-area-meta strong {
    font-size: 2rem;
}

.service-area-meta span {
    color: var(--muted);
    font-size: 0.72rem;
}

.service-area-meta i {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
}

.activation-flow {
    background: var(--surface-alt);
}

.activation-flow ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-strong);
    list-style: none;
}

.activation-flow li {
    display: grid;
    min-height: 220px;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.activation-flow li:last-child {
    border-right: 0;
}

.activation-flow li > span {
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
}

.activation-flow h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.activation-flow p {
    color: var(--muted);
    font-size: 0.86rem;
}

.service-group-hero {
    padding-block: 94px;
    background: #edf3fb;
}

.service-group-hero .content-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 100px;
    align-items: end;
}

.service-group-copy h1 {
    max-width: 980px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    line-height: 0.99;
}

.service-group-copy > p {
    max-width: 780px;
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.service-group-summary {
    padding: 28px;
    border: 1px solid #c7d6e9;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.74);
}

.service-group-summary > i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 1.25rem;
}

.service-group-summary small,
.service-group-summary strong,
.service-group-summary p {
    display: block;
}

.service-group-summary small {
    color: var(--muted);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.service-group-summary strong {
    margin-block: 7px 19px;
    color: var(--navy);
    font-size: 2.1rem;
}

.service-group-summary strong span {
    font-size: 0.72rem;
    font-weight: 650;
}

.service-group-summary p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.service-group-monitoring {
    background: #e9f5f3;
}

.service-group-monitoring .eyebrow,
.service-group-monitoring .service-group-summary strong {
    color: var(--teal);
}

.service-group-workflows {
    background: #edf0f4;
}

.featured-module {
    background: #fff;
}

.featured-module-grid {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 90px;
    align-items: center;
}

.featured-module-visual {
    position: relative;
    display: grid;
    min-height: 410px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    background: var(--surface-alt);
    overflow: hidden;
}

.featured-module-visual::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.38;
    content: '';
}

.featured-module-visual > i {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-lg);
    font-size: 2.25rem;
}

.module-flow {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1.5fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.module-flow span,
.module-flow strong {
    display: grid;
    min-height: 44px;
    place-items: center;
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: #fff;
    font-size: 0.72rem;
    text-align: center;
}

.module-flow i {
    color: var(--blue);
}

.featured-module-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.05;
}

.featured-module-copy > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.featured-module-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.featured-module-copy li {
    display: flex;
    gap: 9px;
    font-size: 0.84rem;
}

.featured-module-copy li i {
    color: var(--blue);
}

.service-directory {
    background: var(--surface-alt);
}

.directory-toolbar {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
    padding: 11px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    background: #fff;
}

.directory-toolbar label {
    display: flex;
    width: min(600px, 70%);
    align-items: center;
    gap: 12px;
    margin: 0;
    padding-inline: 10px;
}

.directory-toolbar label i {
    color: var(--blue);
}

.directory-toolbar input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: 0;
    color: var(--ink);
}

.directory-count {
    padding-right: 8px;
    text-align: right;
}

.directory-count strong,
.directory-count span {
    display: block;
}

.directory-count strong {
    font-size: 1.12rem;
}

.directory-count span {
    color: var(--muted);
    font-size: 0.67rem;
}

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

.directory-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.directory-card:hover {
    border-color: #b4c5dc;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.directory-card[hidden] {
    display: none;
}

.directory-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}

.directory-card-top > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
}

.directory-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.directory-tags span {
    padding: 4px 7px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 700;
}

.directory-card h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.directory-card > p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.8rem;
}

.directory-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.directory-card-footer small,
.directory-card-footer strong {
    display: block;
}

.directory-card-footer small {
    color: var(--muted);
    font-size: 0.62rem;
}

.directory-card-footer strong {
    font-size: 0.84rem;
}

.directory-card-footer strong span {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 600;
}

.directory-card-footer a {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
}

.directory-card-footer a:hover {
    background: var(--blue);
}

.directory-empty {
    min-height: 260px;
    place-items: center;
    align-content: center;
    text-align: center;
}

.directory-empty:not([hidden]) {
    display: grid;
}

.directory-empty i {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 1.8rem;
}

.directory-empty strong,
.directory-empty span {
    display: block;
}

.directory-empty span {
    color: var(--muted);
    font-size: 0.8rem;
}

.service-use-cases {
    background: #fff;
}

.use-case-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.use-case-line > div {
    min-height: 150px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.use-case-line > div:last-child {
    border-right: 0;
}

.use-case-line span,
.use-case-line strong {
    display: block;
}

.use-case-line span {
    margin-bottom: 30px;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 800;
}

.use-case-line strong {
    font-size: 1rem;
}

.domain-page-hero {
    display: grid;
    min-height: 410px;
    align-items: center;
    background: #edf3f8;
}

.domain-page-copy {
    max-width: 940px;
    padding-block: 68px;
}

.domain-page-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 1;
}

.domain-page-copy > p {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.domain-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.domain-trust-line span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #344158;
    font-size: 0.78rem;
    font-weight: 700;
}

.domain-trust-line i {
    color: var(--green);
}

.dns-pricing {
    background: #fff;
}

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

.dns-plan-grid article {
    display: flex;
    min-height: 510px;
    flex-direction: column;
    padding: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
}

.dns-plan-title {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.dns-plan-title > i {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 1.2rem;
}

.dns-plan-title span {
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dns-plan-title h3 {
    margin-block: 5px 0;
    font-size: 1.55rem;
}

.dns-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    margin-block: 42px 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.dns-price strong {
    color: var(--navy);
    font-size: 1.65rem;
}

.dns-price span {
    color: var(--muted);
    font-size: 0.68rem;
}

.dns-price em {
    margin-inline: 7px;
    color: var(--muted);
    font-style: normal;
}

.dns-plan-grid ul {
    display: grid;
    gap: 10px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.dns-plan-grid li {
    display: flex;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 0.83rem;
}

.dns-plan-grid li i {
    color: var(--blue);
}

.dns-plan-grid .button-plan {
    margin-top: auto;
}

.dns-security {
    background: var(--surface-alt);
}

.dns-security-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: center;
}

.dns-security h2 {
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    line-height: 1.06;
}

.dns-security-grid > div:first-child p {
    color: var(--ink-soft);
}

.dns-security-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line-strong);
}

.dns-security-list div {
    min-height: 130px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.dns-security-list div:nth-child(2n) {
    border-right: 0;
}

.dns-security-list div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.dns-security-list strong,
.dns-security-list span {
    display: block;
}

.dns-security-list strong {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.25rem;
}

.dns-security-list span {
    color: var(--muted);
    font-size: 0.78rem;
}

.shop-hero {
    background: #edf2f7;
}

.shop-products {
    min-height: 520px;
    background: #fff;
}

.shop-empty {
    display: grid;
    max-width: 760px;
    min-height: 430px;
    align-content: center;
    margin-inline: auto;
    text-align: center;
}

.shop-empty > div {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    margin: 0 auto 26px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--blue);
    font-size: 1.7rem;
}

.shop-empty h2 {
    font-size: clamp(2rem, 3.7vw, 3.7rem);
    line-height: 1.08;
}

.shop-empty p {
    color: var(--ink-soft);
}

.shop-empty .button-secondary {
    justify-self: center;
    margin-top: 15px;
}

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

.software-shop-grid article {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
}

.software-shop-grid article > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.software-shop-grid h2 {
    margin-block: 12px;
    font-size: 1.7rem;
}

.software-shop-grid p {
    color: var(--muted);
}

.software-shop-grid ul {
    display: grid;
    gap: 9px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.software-shop-grid li {
    display: flex;
    gap: 9px;
    font-size: 0.82rem;
}

.software-shop-grid li i {
    color: var(--blue);
}

.shop-product-footer {
    display: grid;
    gap: 15px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.contact-page {
    background: var(--surface-alt);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
    gap: 100px;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 110px;
}

.contact-intro h1 {
    max-width: 100%;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
    font-size: 3.75rem;
    line-height: 1.04;
}

.contact-intro > p {
    color: var(--ink-soft);
}

.contact-mail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-block: 34px;
    padding: 18px 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.contact-mail > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
}

.contact-mail small,
.contact-mail strong {
    display: block;
}

.contact-mail small {
    color: var(--muted);
    font-size: 0.68rem;
}

.contact-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-topics a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.contact-topics a i {
    color: var(--blue);
}

.contact-form,
.profile-form,
.checkout-form {
    display: grid;
    gap: 18px;
}

.contact-form {
    padding: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.form-heading span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.form-heading h2 {
    margin-block: 8px 18px;
    font-size: 2rem;
}

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

.contact-form label,
.auth-form-box label,
.profile-form label,
.checkout-form label {
    display: grid;
    gap: 7px;
    margin: 0;
}

.contact-form label > span,
.auth-form-box label > span,
.profile-form label > span,
.checkout-form label > span {
    color: #36445a;
    font-size: 0.73rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form-box input,
.profile-form input,
.checkout-form input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    outline: 0;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form-box input:focus,
.profile-form input:focus,
.checkout-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.11);
}

.check-label {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px !important;
}

.check-label input {
    width: 17px !important;
    min-height: 17px !important;
    margin-top: 3px;
    padding: 0 !important;
}

.check-label span {
    color: var(--muted) !important;
    font-weight: 500 !important;
}

.form-status {
    min-height: 22px;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.auth-shell .site-header,
.auth-shell .site-footer {
    display: none;
}

.auth-page {
    display: grid;
    min-height: 100vh;
    grid-template-columns: minmax(380px, 0.9fr) minmax(560px, 1.1fr);
    background: #fff;
}

.auth-visual {
    position: relative;
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 70px clamp(45px, 7vw, 110px);
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
}

.auth-visual::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 80%, transparent);
    content: '';
}

.auth-visual > div {
    position: relative;
    max-width: 650px;
}

.auth-visual .brand {
    position: absolute;
    top: -150px;
    color: #fff;
}

.auth-visual .eyebrow {
    color: #84b7ff;
}

.auth-visual h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1;
}

.auth-visual p {
    color: #c4d2e3;
    font-size: 1.05rem;
}

.auth-visual ul {
    display: grid;
    gap: 12px;
    margin: 34px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.auth-visual li {
    display: flex;
    gap: 10px;
    color: #d7e2ef;
    font-size: 0.84rem;
}

.auth-visual li i {
    color: #84b7ff;
}

.auth-form-wrap {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 60px clamp(38px, 8vw, 130px);
}

.auth-form-box {
    width: min(500px, 100%);
    margin-inline: auto;
}

.auth-form-heading > span {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.auth-form-heading h2 {
    margin-block: 8px 30px;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.08;
}

.auth-form-box form {
    display: grid;
    gap: 16px;
}

.auth-form-box label small {
    color: var(--muted);
    font-size: 0.68rem;
}

.auth-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.8rem;
}

.auth-switch a {
    color: var(--blue);
    font-weight: 750;
}

.alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-radius: 4px;
}

.account-page {
    background: var(--surface-alt);
}

.account-shell {
    padding-block: 46px 90px;
}

.account-shell-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.account-sidebar {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    background: #fff;
}

.account-customer {
    padding: 22px;
    border-bottom: 1px solid var(--line);
    background: var(--navy);
    color: #fff;
}

.account-customer span,
.account-customer strong,
.account-customer small {
    display: block;
}

.account-customer span {
    color: #aebfd4;
    font-size: 0.64rem;
    text-transform: uppercase;
}

.account-customer strong {
    margin-block: 5px;
    overflow: hidden;
    font-size: 0.95rem;
    text-overflow: ellipsis;
}

.account-customer small {
    color: #b8c8dc;
    font-size: 0.68rem;
}

.account-nav {
    display: grid;
    padding: 10px;
}

.account-nav-group {
    display: grid;
    gap: 3px;
    margin-bottom: 18px;
}

.portal-brand {
    padding: 25px 24px 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.portal-brand strong,
.portal-brand small { display:block; }
.portal-brand strong { color:#fff; font-size:1.15rem; }
.portal-brand small { margin-top:4px; color:#7fa5d2; font-size:.58rem; font-weight:800; }
.account-header > .button-secondary,
.portal-area-intro > .button-primary { display:none; }

.portal-catalog { margin-top:28px; }
.panel-install { padding:70px 0; background:#0b1728; color:#fff; }
.panel-install-portal { margin:0 0 28px; padding:28px; }
.panel-install h2 { max-width:720px; margin:8px 0 12px; }
.panel-install p { max-width:760px; color:#b9c8da; }
.install-command { display:flex; width:100%; max-width:none; min-height:74px; align-items:stretch; margin-top:24px; border:1px solid #3b5f85; background:#07111f; box-shadow:0 10px 28px rgba(0,0,0,.18); }
.install-command code { display:flex; flex:1; min-width:0; align-items:center; padding:18px 22px; overflow-x:auto; color:#e6f1ff; font-size:.78rem; line-height:1.5; white-space:nowrap; scrollbar-width:thin; }
.install-copy-button { display:flex; flex:0 0 150px; width:150px; min-width:150px; min-height:72px; align-items:center; justify-content:center; gap:10px; padding:0 22px; border:0; border-left:1px solid #5a83ad; border-radius:0; background:#1769c2; color:#fff; font:800 .76rem/1 sans-serif; cursor:pointer; }
.install-copy-button i { display:inline-block; flex:0 0 auto; font-size:1.05rem; line-height:1; }
.install-copy-button span { display:inline-block; flex:0 0 auto; white-space:nowrap; }
.install-copy-button:hover,
.install-copy-button:focus-visible { background:#0f56a3; color:#fff; }
.account-page .panel-install-portal,
.account-page .panel-install-portal > div,
.account-page .panel-install-portal .install-command { width:100%; max-width:none; }
.account-page .panel-install-portal .install-command { width:calc(100% + 56px); margin-left:-28px; }
.install-meta { display:flex; flex-wrap:wrap; gap:18px; margin-top:18px; color:#a9bdd4; font-size:.72rem; }
.install-meta span { display:inline-flex; gap:7px; align-items:center; }
.portal-catalog > header { display:flex; justify-content:space-between; align-items:end; margin-bottom:14px; }
.portal-catalog > header h2 { margin:5px 0 0; }
.portal-catalog > header > strong { color:var(--muted); font-size:.75rem; }
.portal-catalog-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; }
.portal-catalog-grid article { display:grid; grid-template-columns:42px minmax(0,1fr) 38px; gap:14px; align-items:start; padding:20px; border:1px solid var(--line); background:#fff; }
.portal-catalog-grid article > i { display:grid; width:42px; height:42px; place-items:center; background:#eef4fb; color:var(--blue); }
.portal-catalog-grid h3 { margin:0 0 6px; font-size:.92rem; }
.portal-catalog-grid p { min-height:38px; margin:0 0 12px; color:var(--ink-soft); font-size:.74rem; }
.portal-catalog-grid article div > strong { font-size:.76rem; }
.portal-service-toolbar { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; padding:14px; border:1px solid var(--line); background:#fff; }
.portal-service-toolbar > label { display:flex; width:min(440px,100%); min-height:46px; align-items:center; gap:10px; padding:0 14px; border:1px solid var(--line-strong); background:#f8fafc; }
.portal-service-toolbar > label i { color:var(--blue); }
.portal-service-toolbar input { width:100%; min-width:0; border:0; outline:0; background:transparent; color:var(--ink); }
.portal-service-tabs { display:flex; flex-wrap:wrap; gap:6px; }
.portal-service-tabs button { display:inline-flex; min-height:42px; align-items:center; gap:7px; padding:0 13px; border:1px solid var(--line); background:#fff; color:var(--ink-soft); font-size:.68rem; font-weight:800; cursor:pointer; }
.portal-service-tabs button:hover { border-color:var(--blue); color:var(--blue); }
.portal-service-tabs button.is-active { border-color:#173352; background:#173352; color:#fff; }
.portal-service-category { display:block; margin-bottom:5px; color:var(--blue); font-size:.58rem; font-weight:850; text-transform:uppercase; }
.portal-service-empty { margin-top:16px; }
.portal-hosting-head { display:flex; align-items:flex-start; gap:18px; margin-bottom:22px; padding:26px; border:1px solid var(--line); background:#fff; }
.portal-hosting-head > i { display:grid; width:54px; height:54px; flex:0 0 54px; place-items:center; background:#eaf3fc; color:var(--blue); font-size:1.35rem; }
.portal-hosting-head h2 { margin:5px 0 7px; }
.portal-hosting-head p { max-width:780px; margin:0; color:var(--ink-soft); }
.portal-hosting-plans { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.portal-hosting-plans article { display:flex; min-height:390px; flex-direction:column; padding:24px; border:1px solid var(--line-strong); background:#fff; }
.portal-hosting-plans article.is-featured { border-top:1px solid var(--line-strong); padding-top:24px; }
.portal-hosting-plans article:nth-child(3) { border-top:4px solid var(--blue); padding-top:21px; }
.portal-hosting-plans header span { color:var(--blue); font-size:.6rem; font-weight:850; text-transform:uppercase; }
.portal-hosting-plans h3 { margin:6px 0 0; font-size:1.15rem; }
.portal-hosting-price { display:flex; min-height:72px; align-items:end; gap:6px; margin:24px 0 20px; }
.portal-hosting-price strong { font-size:1.8rem; line-height:1; }
.portal-hosting-price small,.portal-hosting-price span { color:var(--muted); font-size:.68rem; }
.portal-hosting-plans ul { display:grid; gap:10px; margin:0 0 24px; padding:0; list-style:none; }
.portal-hosting-plans li { display:flex; gap:8px; color:var(--ink-soft); font-size:.76rem; }
.portal-hosting-plans li i { color:var(--blue); }
.portal-hosting-plans .button-primary { width:100%; justify-content:center; margin-top:auto; }
.portal-hosting-note { display:flex; align-items:center; gap:10px; margin-top:14px; padding:16px 18px; border:1px solid var(--line); background:#f8fafc; color:var(--ink-soft); }
.portal-hosting-note p { margin:0; font-size:.74rem; }
@media(max-width:1000px){.portal-hosting-plans{grid-template-columns:1fr}.portal-hosting-plans article{min-height:0}}
@media(max-width:620px){.portal-hosting-head{flex-direction:column;padding:20px}}
@media(max-width:1050px){.portal-service-toolbar{align-items:stretch;flex-direction:column}.portal-service-toolbar>label{width:100%}}
@media(max-width:620px){.portal-service-tabs{display:grid;grid-template-columns:1fr 1fr}.portal-service-tabs button{justify-content:center;padding:0 8px}.portal-service-tabs button:first-child{grid-column:1/-1}}
@media(max-width:800px){.portal-catalog-grid{grid-template-columns:1fr}}

.account-nav-group > small {
    padding: 0 14px 6px;
    color: #7890aa;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.portal-area-intro,
.credit-hero,
.dns-editor-head,
.domain-management-list article {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

.portal-area-intro > i { font-size: 2rem; color: var(--blue); }
.portal-area-intro > div { flex: 1; }
.portal-area-intro h2, .portal-area-intro p { margin: 0; }
.portal-product-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:20px; }
.portal-product-grid article { padding:24px; border:1px solid var(--line); background:#fff; }
.portal-product-grid article > div { display:flex; justify-content:space-between; }
.portal-product-grid article > div i { color:var(--blue); font-size:1.4rem; }
.portal-product-grid h3 { margin:28px 0 8px; font-size:1.05rem; }
.portal-product-grid p { color:var(--ink-soft); font-size:.82rem; }

.credit-hero { justify-content:space-between; background:var(--navy); color:#fff; }
.credit-hero > div span,.credit-hero > div strong,.credit-hero > div small { display:block; }
.credit-hero > div strong { margin:8px 0; font-size:2.7rem; }
.credit-hero form { display:flex; align-items:end; gap:10px; }
.credit-hero label span { display:block; margin-bottom:6px; font-size:.7rem; }
.credit-hero label > div { display:flex; align-items:center; background:#fff; color:var(--ink); }
.credit-hero input { width:130px; height:48px; border:0; padding:0 12px; }
.credit-hero label > div span { padding:0 12px; margin:0; }

.portal-domain-tools { display:grid; grid-template-columns:1.35fr .65fr; gap:16px; }
.portal-domain-tools > section { padding:28px; border:1px solid var(--line); background:#fff; overflow:hidden; }
.portal-domain-tools .domain-finder { margin:22px -28px -28px; }
.portal-domain-tools form label span { display:block; margin-bottom:7px; font-size:.72rem; font-weight:700; }
.portal-domain-tools form input { width:100%; height:48px; padding:0 12px; border:1px solid var(--line); }
.portal-domain-tools form button { margin-top:10px; }
.domain-management-list { display:grid; gap:8px; margin-top:20px; }
.domain-management-list article > div { flex:1; min-width:0; }
.domain-management-list strong,.domain-management-list span,.domain-management-list code { display:block; }
.domain-management-list code { margin-top:10px; padding:8px; overflow:auto; background:#eef3f8; font-size:.68rem; }

.dns-editor-head { justify-content:space-between; margin-bottom:14px; }
.dns-editor-head h2 { margin:4px 0 0; }
.dns-editor-head select { min-width:260px; height:46px; border:1px solid var(--line); padding:0 12px; }
.dns-record-form { display:grid; grid-template-columns:110px 150px minmax(220px,1fr) 110px 100px auto; gap:8px; align-items:end; padding:20px; border:1px solid var(--line); background:#fff; }
.dns-record-form label span { display:block; margin-bottom:6px; font-size:.68rem; font-weight:700; }
.dns-record-form input,.dns-record-form select { width:100%; height:44px; border:1px solid var(--line); padding:0 10px; }
.security-layout { display:grid; grid-template-columns:minmax(0,760px); gap:18px; }
.security-layout > aside { padding:28px; background:var(--navy); color:#fff; }
.security-layout > aside > i { font-size:2rem; }
.security-layout > aside h2 { margin:24px 0; }
.security-layout > aside li { margin:10px 0; color:#c9d7e9; }
.one-column { grid-template-columns:1fr!important; }

@media(max-width:1100px){.portal-product-grid{grid-template-columns:1fr 1fr}.portal-domain-tools,.security-layout{grid-template-columns:1fr}.dns-record-form{grid-template-columns:1fr 1fr}.dns-value{grid-column:1/-1}}
@media(max-width:700px){.portal-product-grid{grid-template-columns:1fr}.portal-area-intro,.credit-hero,.domain-management-list article{align-items:flex-start;flex-direction:column}.credit-hero form{width:100%;align-items:stretch;flex-direction:column}.portal-domain-tools{grid-template-columns:1fr}.dns-record-form{grid-template-columns:1fr}.dns-value{grid-column:auto}.dns-editor-head{align-items:stretch;flex-direction:column}.dns-editor-head select{width:100%;min-width:0}}

.account-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 680;
}

.account-nav a:hover,
.account-nav a.is-active {
    background: var(--blue-pale);
    color: var(--blue);
}

.account-nav a i {
    width: 20px;
    text-align: center;
}

.account-nav .account-logout {
    margin-top: 8px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--red);
}

.account-main {
    min-width: 0;
}

.account-header {
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-strong);
}

.account-header .eyebrow {
    margin-bottom: 6px;
}

.account-header h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.account-alert {
    margin-bottom: 22px;
}

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

.account-stat-grid article {
    display: grid;
    min-height: 170px;
    align-content: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.account-stat-grid article > i {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 1.1rem;
}

.account-stat-grid span,
.account-stat-grid strong,
.account-stat-grid small {
    display: block;
}

.account-stat-grid span {
    color: var(--muted);
    font-size: 0.68rem;
}

.account-stat-grid strong {
    margin-block: 4px;
    font-size: 1.45rem;
}

.account-stat-grid small {
    color: #8b96a7;
    font-size: 0.63rem;
}

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

.account-panels > section {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.account-panels > section > header {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.account-panels header span,
.account-panels header h2 {
    display: block;
}

.account-panels header span {
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.account-panels header h2 {
    margin: 3px 0 0;
    font-size: 1.05rem;
}

.account-panels header a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 750;
}

.account-list {
    display: grid;
}

.account-list > a {
    display: grid;
    min-height: 76px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
}

.account-list > a:last-child {
    border-bottom: 0;
}

.account-list > a > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 4px;
    background: var(--surface-alt);
    color: var(--blue);
}

.account-list strong,
.account-list small {
    display: block;
}

.account-list strong {
    font-size: 0.78rem;
}

.account-list small {
    color: var(--muted);
    font-size: 0.64rem;
}

.account-empty {
    min-height: 110px;
    margin: 0;
    padding: 38px 20px;
    color: var(--muted);
    font-size: 0.8rem;
}

.status {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 25px;
    padding: 4px 8px;
    border-radius: 3px;
    background: #e8edf3;
    color: #536175;
    font-size: 0.61rem;
    font-style: normal;
    font-weight: 750;
}

.status-active,
.status-paid,
.status-billed {
    background: #e5f4eb;
    color: var(--green);
}

.status-draft,
.status-created,
.status-progressing,
.status-open {
    background: #fff1d8;
    color: #855b0a;
}

.status-failed,
.status-cancelled,
.status-revoked {
    background: #f9e6e8;
    color: var(--red);
}

.account-table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.account-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.account-table th,
.account-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.account-table thead th {
    background: #f7f9fb;
    color: var(--muted);
    font-size: 0.63rem;
    text-transform: uppercase;
}

.account-table tbody tr:last-child td {
    border-bottom: 0;
}

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

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

.account-table td strong {
    color: var(--ink);
}

.account-table td small {
    color: var(--muted);
    font-size: 0.63rem;
}

.empty-cell {
    height: 180px;
    color: var(--muted) !important;
    text-align: center !important;
}

.table-action {
    color: var(--blue);
    font-weight: 750;
}

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

.usage-summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
    padding: 26px;
    border-radius: 5px;
    background: var(--navy);
    color: #fff;
}

.usage-summary span,
.usage-summary strong {
    display: block;
}

.usage-summary span {
    color: #acc0d8;
    font-size: 0.67rem;
}

.usage-summary strong {
    margin-top: 4px;
    font-size: 1.7rem;
}

.usage-summary p {
    margin: 0;
    color: #cbd7e6;
    font-size: 0.8rem;
}

.account-info-banner {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    padding: 22px;
    border: 1px solid #bfd0e4;
    border-radius: 5px;
    background: var(--blue-pale);
}

.account-info-banner > i {
    color: var(--blue);
    font-size: 1.3rem;
}

.account-info-banner strong,
.account-info-banner p {
    display: block;
}

.account-info-banner p {
    margin: 5px 0 0;
    color: var(--ink-soft);
    font-size: 0.76rem;
}

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

.key-grid article {
    min-height: 270px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.key-title {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.key-title > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
}

.key-title strong,
.key-title span {
    display: block;
}

.key-title strong {
    font-size: 0.82rem;
}

.key-title span {
    color: var(--muted);
    font-size: 0.65rem;
}

.key-grid code {
    display: block;
    overflow: hidden;
    margin-block: 26px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #f7f9fb;
    color: var(--ink-soft);
    font-size: 0.75rem;
    text-overflow: ellipsis;
}

.key-grid dl {
    display: flex;
    gap: 30px;
    margin: 0 0 20px;
}

.key-grid dt,
.key-grid dd {
    margin: 0;
    font-size: 0.68rem;
}

.key-grid dt {
    color: var(--muted);
}

.account-empty-block,
.activation-complete {
    display: grid;
    min-height: 430px;
    grid-column: 1 / -1;
    place-items: center;
    align-content: center;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    text-align: center;
}

.account-empty-block > i,
.activation-complete > i {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 2.2rem;
}

.account-empty-block p,
.activation-complete p {
    color: var(--muted);
}

.profile-form {
    gap: 18px;
}

.form-section {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.form-section > header {
    display: flex;
    gap: 14px;
}

.form-section > header > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
}

.form-section h2 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.form-section header p {
    color: var(--muted);
    font-size: 0.7rem;
}

.form-section-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.field-wide {
    grid-column: span 2;
}

.profile-form > .button-primary {
    justify-self: end;
}

.activation-review {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
}

.activation-review-main,
.activation-review aside {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.activation-review-main h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.activation-review-main > p {
    color: var(--ink-soft);
}

.activation-review-main ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.activation-review-main li {
    display: flex;
    gap: 9px;
    font-size: 0.82rem;
}

.activation-review-main li i {
    color: var(--blue);
}

.activation-review aside {
    align-self: start;
}

.activation-review aside small,
.activation-review aside strong,
.activation-review aside > span {
    display: block;
}

.activation-review aside small {
    color: var(--muted);
    font-size: 0.66rem;
    text-transform: uppercase;
}

.activation-review aside strong {
    margin-block: 8px 20px;
    font-size: 1.45rem;
}

.activation-review aside > span {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 0.74rem;
}

.account-error,
.not-found {
    min-height: 620px;
    background: var(--surface-alt);
}

.legal-hero {
    padding: 92px 0 58px;
    border-bottom: 1px solid var(--line);
    background: #eef3f8;
}

.legal-hero h1 {
    max-width: 900px;
    margin: 12px 0 18px;
    font-size: 4rem;
}

.legal-hero p {
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.legal-hero small {
    display: block;
    margin-top: 24px;
    color: var(--muted);
}

.legal-page {
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 780px);
    justify-content: space-between;
    gap: 90px;
}

.legal-layout > aside nav {
    position: sticky;
    top: 110px;
    display: grid;
    border-top: 1px solid var(--line-strong);
}

.legal-layout > aside a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.legal-content section {
    padding: 0 0 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 120px;
}

.legal-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 54px;
    border-top: 3px solid var(--blue);
    border-bottom: 1px solid var(--line-strong);
    background: #f5f8fb;
}

.legal-facts > div {
    min-width: 0;
    padding: 20px;
    border-right: 1px solid var(--line);
}

.legal-facts > div:last-child {
    border-right: 0;
}

.legal-facts small,
.legal-facts strong {
    display: block;
    overflow-wrap: anywhere;
}

.legal-facts small {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.legal-facts strong {
    font-size: 0.88rem;
}

.legal-content section > span {
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
}

.legal-content h2 {
    margin: 8px 0 22px;
    font-size: 2rem;
}

.legal-content h3 {
    margin: 28px 0 10px;
    font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-layout > aside nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 64px 0 40px;
    }

    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-facts {
        grid-template-columns: 1fr;
    }

    .legal-facts > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

/* Standalone customer application */
.account-page .account-shell {
    min-height: 100vh;
    padding: 0;
}

.account-page .account-shell > .content-rail {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.account-page .account-shell-grid {
    grid-template-columns: 272px minmax(0, 1fr);
    min-height: 100vh;
    gap: 0;
    align-items: stretch;
}

.account-page .account-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: #0b1728;
}

.account-page .account-customer {
    background: transparent;
}

.account-page .account-nav a { color: #c4d0df; }
.account-page .account-nav a:hover,
.account-page .account-nav a.is-active { background: #173352; color: #fff; }
.account-page .account-nav .account-logout { border-color: rgba(255,255,255,.1); }
.account-page .account-main { width: 100%; padding: 28px 34px 64px; }
.account-page .account-header { min-height: 76px; margin-bottom: 22px; padding-bottom: 18px; }
.account-page .account-header h1 { font-size: 2.25rem; }

.portal-domain-finder {
    margin-top: 24px;
    padding: 0;
    background: transparent;
}

.portal-domain-query {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(220px, .65fr) auto;
    gap: 10px;
    align-items: end;
}

.portal-domain-query label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: .7rem;
    font-weight: 750;
}

.portal-domain-query label > div {
    display: flex;
    height: 50px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    background: #fff;
}

.portal-domain-query label > div i { color: var(--blue); }
.portal-domain-query input {
    width: 100%;
    height: auto!important;
    padding: 0!important;
    border: 0!important;
    outline: 0;
    box-shadow: none!important;
}

.portal-domain-query .button-primary { min-height: 50px; white-space: nowrap; }
.portal-domain-popular { display:flex; align-items:center; flex-wrap:wrap; gap:6px; margin-top:12px; }
.portal-domain-popular > span { margin-right:4px; color:var(--muted); font-size:.68rem; font-weight:750; }
.portal-domain-popular label { margin:0; }
.portal-domain-popular input { position:absolute; opacity:0; }
.portal-domain-popular label span { display:block; padding:7px 9px; border:1px solid var(--line); background:#fff; color:var(--ink-soft); font-size:.7rem; cursor:pointer; }
.portal-domain-popular input:checked + span { border-color:var(--blue); background:var(--blue-pale); color:var(--blue); }
.portal-domain-finder .domain-search-status { color:var(--ink-soft); }
.portal-domain-finder .domain-results { grid-template-columns:repeat(2,minmax(0,1fr)); }

@media (max-width: 980px) {
    .account-page .account-shell-grid { grid-template-columns: 78px minmax(0,1fr); }
    .account-page .account-sidebar { position:sticky; height:100vh; }
    .account-page .portal-brand strong,
    .account-page .portal-brand small,
    .account-page .account-customer,
    .account-page .account-nav-group > small,
    .account-page .account-nav a span { display:none; }
    .account-page .account-nav { display:grid; overflow:visible; }
    .account-page .account-nav a { width:48px; justify-content:center; margin:auto; }
    .portal-domain-query { grid-template-columns:1fr 1fr; }
    .portal-domain-query .button-primary { grid-column:1/-1; }
}

@media (max-width: 650px) {
    .account-page .account-shell-grid { display:block; }
    .account-page .account-sidebar { position:static; width:100%; height:auto; overflow:visible; }
    .account-page .portal-brand { padding:16px 18px; }
    .account-page .portal-brand strong { display:block; }
    .account-page .account-nav { display:flex; padding:8px; overflow-x:auto; }
    .account-page .account-nav-group { display:flex; flex:0 0 auto; margin:0; }
    .account-page .account-nav .account-logout { margin:0; }
    .account-page .account-main { padding:20px 16px 48px; }
    .portal-domain-query { grid-template-columns:1fr; }
    .portal-domain-query .button-primary { grid-column:auto; }
    .portal-domain-finder .domain-results { grid-template-columns:1fr; }
}

.not-found .content-rail {
    display: grid;
    min-height: 430px;
    align-content: center;
}

.not-found .content-rail > span {
    color: var(--blue);
    font-size: 1rem;
    font-weight: 800;
}

.not-found h1 {
    margin-block: 14px 20px;
    font-size: clamp(3rem, 6vw, 6rem);
}

.not-found p {
    color: var(--muted);
}

.not-found .button-primary {
    justify-self: start;
}

.checkout-shell {
    background: var(--surface-alt);
}

.checkout-page {
    min-height: 700px;
}

.checkout-heading {
    max-width: 850px;
    margin-bottom: 50px;
}

.checkout-heading h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
}

.checkout-heading p {
    color: var(--ink-soft);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 18px;
}

.checkout-items,
.checkout-login,
.checkout-form > section,
.checkout-summary,
.checkout-empty {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.checkout-items > header,
.checkout-form section > header {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--line);
}

.checkout-items header > span,
.checkout-form header > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
}

.checkout-items h2,
.checkout-form h2 {
    margin: 0;
    font-size: 1.2rem;
}

.checkout-items header p,
.checkout-form header p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.checkout-items article {
    display: grid;
    min-height: 92px;
    grid-template-columns: 42px minmax(0, 1fr) auto 44px;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
}

.checkout-items article:last-child {
    border-bottom: 0;
}

.checkout-items article > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 4px;
    background: var(--blue-pale);
    color: var(--blue);
}

.checkout-items article small,
.checkout-items article strong,
.checkout-items article span {
    display: block;
}

.checkout-items article small {
    color: var(--blue);
    font-size: 0.6rem;
    font-weight: 800;
}

.checkout-items article > div strong {
    font-size: 0.84rem;
}

.checkout-items article span {
    color: var(--muted);
    font-size: 0.64rem;
}

.checkout-items article > strong {
    font-size: 0.82rem;
}

.checkout-login {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
}

.checkout-login > i {
    color: var(--blue);
    font-size: 1.45rem;
}

.checkout-login h2 {
    margin: 0;
    font-size: 1rem;
}

.checkout-login p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.checkout-form > section .form-section-fields {
    padding: 26px;
}

.checkout-consent {
    display: grid;
    gap: 14px;
    padding: 26px;
}

.checkout-consent .button-primary {
    margin-top: 8px;
}

.checkout-summary {
    position: sticky;
    top: 100px;
    padding: 25px;
}

.checkout-summary > span {
    display: block;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-summary > div {
    display: flex;
    justify-content: space-between;
    padding-block: 14px;
    border-bottom: 1px solid var(--line);
}

.checkout-summary small {
    color: var(--muted);
}

.checkout-summary p {
    display: flex;
    gap: 9px;
    margin-block: 20px;
    color: var(--muted);
    font-size: 0.7rem;
}

.checkout-summary p i {
    color: var(--blue);
}

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

.checkout-summary li {
    display: flex;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 0.7rem;
}

.checkout-summary li i {
    color: var(--green);
}

.checkout-empty,
.checkout-success {
    display: grid;
    min-height: 460px;
    place-items: center;
    align-content: center;
    padding: 50px;
    text-align: center;
}

.checkout-empty > i,
.checkout-success > i {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 2.4rem;
}

.checkout-empty p,
.checkout-success p {
    max-width: 650px;
    color: var(--muted);
}

.checkout-success {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.checkout-success h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 1.05;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) repeat(4, minmax(120px, 0.6fr));
    gap: 56px;
    padding-block: 70px 60px;
}

.footer-brand p {
    max-width: 360px;
    margin-block: 22px 14px;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-brand > a:last-child {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 750;
}

.footer-main nav {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-main nav strong {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 0.76rem;
}

.footer-main nav a {
    color: var(--muted);
    font-size: 0.74rem;
}

.footer-main nav a:hover {
    color: var(--blue);
}

.footer-legal {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.68rem;
}

.footer-legal nav {
    display: flex;
    gap: 22px;
}

.ewx-toast {
    border: 0;
    border-radius: 4px;
    background: var(--navy-deep);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1240px) {
    :root {
        --rail: min(100% - 42px, 1180px);
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
    }

    .nav-contact {
        display: none;
    }

    .panel-showcase-grid,
    .product-hero-content,
    .service-group-hero .content-rail {
        gap: 50px;
    }

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

    .hosting-plan {
        min-height: 560px;
    }

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

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

    .footer-main {
        grid-template-columns: minmax(280px, 1.4fr) repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    :root {
        --rail: min(100% - 36px, 900px);
        --header-height: 80px;
    }

    .utility-bar {
        display: none;
    }

    .site-header,
    .main-nav-wrap,
    .main-nav {
        height: 80px;
    }

    .account-button {
        display: none;
    }

    .home-hero,
    .home-hero-content {
        min-height: 620px;
    }

    .home-hero-overlay {
        background: linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.9) 62%, rgba(247, 249, 251, 0.35));
    }

    .home-hero-copy {
        width: min(680px, 76%);
    }

    .domain-finder .content-rail,
    .section-heading-wide,
    .panel-showcase-grid,
    .infrastructure-grid,
    .account-cta-inner,
    .panel-intro-grid,
    .feature-ledger article,
    .faq-grid,
    .featured-module-grid,
    .dns-security-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .domain-tlds {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .domain-finder-form .button-primary {
        grid-column: 2;
        grid-row: 1;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-feature {
        min-height: 330px;
    }

    .service-feature > div:first-child {
        margin-bottom: 30px;
    }

    .product-hero-content,
    .service-group-hero .content-rail {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 35px;
    }

    .feature-ledger article {
        padding-block: 45px;
    }

    .feature-ledger article > ul {
        padding-left: 112px;
    }

    .service-area-row {
        grid-template-columns: 38px 54px minmax(0, 1fr);
    }

    .service-area-meta {
        display: none;
    }

    .activation-flow ol {
        grid-template-columns: 1fr;
    }

    .activation-flow li {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .activation-flow li:last-child {
        border-bottom: 0;
    }

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

    .use-case-line > div:nth-child(2) {
        border-right: 0;
    }

    .use-case-line > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .contact-intro {
        position: static;
    }

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

    .auth-visual {
        min-height: 520px;
    }

    .auth-visual .brand {
        top: -90px;
    }

    .auth-form-wrap {
        min-height: auto;
        padding-block: 80px;
    }

    .account-shell-grid {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-nav {
        display: flex;
        overflow: auto;
    }

    .account-nav a {
        flex: 0 0 auto;
    }

    .account-nav .account-logout {
        margin: 0 0 0 auto;
        border-top: 0;
    }

    .account-panels {
        grid-template-columns: 1fr;
    }

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

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

    .checkout-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 767.98px) {
    :root {
        --rail: calc(100% - 28px);
    }

    .section-pad {
        padding-block: 72px;
    }

    .brand {
        font-size: 1.3rem;
    }

    .nav-actions {
        gap: 6px;
    }

    .icon-button {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .home-hero,
    .home-hero-content {
        min-height: 680px;
    }

    .home-hero-media {
        background-position: 66% center;
    }

    .home-hero-overlay {
        background: linear-gradient(180deg, rgba(247, 249, 251, 0.97) 0%, rgba(247, 249, 251, 0.94) 66%, rgba(247, 249, 251, 0.82));
    }

    .home-hero-content {
        align-content: start;
        padding-top: 68px;
    }

    .home-hero-copy {
        width: 100%;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .home-hero-copy > p {
        font-size: 0.98rem;
    }

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

    .hero-actions > * {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        min-height: 76px;
        padding: 10px 0;
    }

    .hero-proof > div {
        min-height: 0;
        padding: 4px 0;
        border: 0;
    }

    .hero-proof span {
        display: none;
    }

    .domain-finder,
    .domain-finder-compact {
        padding-block: 58px;
    }

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

    .domain-tlds,
    .domain-finder-form .button-primary {
        grid-column: 1;
        grid-row: auto;
    }

    .domain-tlds {
        width: 100%;
        overflow-x: auto;
    }

    .domain-finder-form .button-primary {
        width: 100%;
    }

    .domain-result {
        grid-template-columns: 26px minmax(0, 1fr) auto;
    }

    .domain-result-price {
        grid-column: 2;
        text-align: left;
    }

    .domain-result .button-primary {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .section-heading-wide {
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .offer-lines > a {
        min-height: 142px;
        grid-template-columns: 28px 46px minmax(0, 1fr) 18px;
        gap: 12px;
    }

    .offer-lines > a > i:nth-child(2) {
        width: 46px;
        height: 46px;
    }

    .offer-lines strong {
        font-size: 1.05rem;
    }

    .offer-lines p {
        font-size: 0.75rem;
    }

    .panel-showcase-grid {
        gap: 40px;
    }

    .controlpanel-preview {
        margin-inline: -8px;
    }

    .preview-layout {
        min-height: 360px;
        grid-template-columns: 48px 1fr;
    }

    .preview-layout aside {
        padding-inline: 4px;
    }

    .preview-layout aside i {
        width: 38px;
        height: 38px;
    }

    .preview-main {
        padding: 18px;
    }

    .preview-heading > span {
        display: none;
    }

    .preview-metrics {
        gap: 6px;
    }

    .preview-metrics > div {
        padding: 10px;
    }

    .preview-metrics strong {
        font-size: 0.95rem;
    }

    .service-feature {
        min-height: 350px;
        padding: 26px;
    }

    .infrastructure-grid,
    .account-cta-inner {
        gap: 45px;
    }

    .infra-spec-list {
        grid-template-columns: 1fr;
    }

    .infra-spec-list > div,
    .infra-spec-list > div:nth-child(2n),
    .infra-spec-list > div:nth-last-child(-n + 2) {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .infra-spec-list > div:last-child {
        border-bottom: 0;
    }

    .editorial-hero,
    .compact-hero {
        min-height: 520px;
    }

    .editorial-hero h1,
    .compact-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.4rem);
    }

    .software-product-row {
        grid-template-columns: 32px minmax(0, 1fr) 20px;
        gap: 12px;
        padding-block: 34px;
    }

    .software-product-price {
        grid-column: 2;
    }

    .software-product-row > i {
        grid-column: 3;
        grid-row: 1;
    }

    .product-hero,
    .product-hero-content {
        min-height: 690px;
    }

    .product-hero-content,
    .service-group-hero .content-rail {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .product-hero h1,
    .service-group-copy h1,
    .domain-page-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4.5rem);
    }

    .product-price-panel,
    .hero-fact-list,
    .service-group-summary {
        display: none;
    }

    .anchor-navigation {
        top: 80px;
    }

    .panel-intro dl {
        grid-template-columns: 1fr;
    }

    .feature-ledger article {
        gap: 30px;
    }

    .feature-ledger-title {
        grid-template-columns: 28px 46px minmax(0, 1fr);
        gap: 12px;
    }

    .feature-ledger-title > i {
        width: 46px;
        height: 46px;
    }

    .feature-ledger h2 {
        font-size: 1.45rem;
    }

    .feature-ledger article > ul {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .closing-band .content-rail {
        grid-template-columns: 1fr;
    }

    .hosting-plan-grid,
    .service-directory-grid,
    .dns-plan-grid,
    .software-shop-grid,
    .key-grid {
        grid-template-columns: 1fr;
    }

    .hosting-plan {
        min-height: 560px;
    }

    .service-area-row {
        min-height: 230px;
        grid-template-columns: 28px 46px minmax(0, 1fr);
        gap: 12px;
    }

    .service-area-row > i {
        width: 46px;
        height: 46px;
    }

    .service-area-row h2 {
        font-size: 1.7rem;
    }

    .service-area-row p {
        font-size: 0.76rem;
    }

    .service-group-hero {
        padding-block: 72px;
    }

    .featured-module-visual {
        min-height: 340px;
    }

    .module-flow {
        right: 12px;
        left: 12px;
        gap: 5px;
    }

    .module-flow span,
    .module-flow strong {
        font-size: 0.58rem;
    }

    .featured-module-copy ul {
        grid-template-columns: 1fr;
    }

    .directory-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .directory-toolbar label {
        width: 100%;
    }

    .directory-count {
        display: flex;
        gap: 7px;
        text-align: left;
    }

    .directory-card {
        min-height: 310px;
    }

    .use-case-line {
        grid-template-columns: 1fr;
    }

    .use-case-line > div,
    .use-case-line > div:nth-child(2),
    .use-case-line > div:nth-child(-n + 2) {
        min-height: 110px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .use-case-line > div:last-child {
        border-bottom: 0;
    }

    .use-case-line span {
        margin-bottom: 15px;
    }

    .domain-page-hero {
        min-height: 500px;
    }

    .domain-trust-line {
        display: grid;
        gap: 8px;
    }

    .dns-plan-grid article {
        min-height: 520px;
        padding: 26px;
    }

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

    .dns-price em {
        margin-inline: 0;
    }

    .dns-security-list {
        grid-template-columns: 1fr;
    }

    .dns-security-list div,
    .dns-security-list div:nth-child(2n),
    .dns-security-list div:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .dns-security-list div:last-child {
        border-bottom: 0;
    }

    .contact-form {
        padding: 26px;
    }

    .form-row,
    .form-section-fields {
        grid-template-columns: 1fr;
    }

    .field-wide {
        grid-column: auto;
    }

    .auth-visual {
        min-height: 600px;
        padding: 70px 25px;
    }

    .auth-visual .brand {
        top: -110px;
    }

    .auth-form-wrap {
        padding: 65px 22px;
    }

    .account-shell {
        padding-top: 20px;
    }

    .account-shell-grid {
        gap: 25px;
    }

    .account-nav a span {
        display: none;
    }

    .account-nav a {
        width: 45px;
        justify-content: center;
        padding: 8px;
    }

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

    .account-stat-grid {
        grid-template-columns: 1fr;
    }

    .account-stat-grid article {
        min-height: 135px;
    }

    .usage-summary,
    .form-section,
    .activation-review {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 22px;
    }

    .checkout-items article {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        padding-inline: 16px;
    }

    .checkout-items article > strong {
        grid-column: 2;
    }

    .checkout-items article .icon-button {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .checkout-login {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .checkout-login .button-primary,
    .checkout-login .button-secondary {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }

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

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-block: 18px;
    }

    .footer-legal nav {
        flex-wrap: wrap;
    }
}

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