:root {
    color-scheme: light;
    --color-primary: #0dacdb;
    --color-primary-dark: #2891b1;
    --color-ink: #253033;
    --color-muted: #5d6a6e;
    --color-surface: #ffffff;
    --color-surface-muted: #f2f7f8;
    --color-border: #d9e4e7;
    --shadow-soft: 0 18px 50px rgba(37, 48, 51, 0.08);
    --content-width: 1040px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--color-surface-muted);
    color: var(--color-ink);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(13, 172, 219, 0.12), transparent 28rem),
        linear-gradient(180deg, #fbfeff 0%, var(--color-surface-muted) 100%);
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.page-frame :focus-visible {
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 3px;
}

.site-shell {
    display: flex;
    width: min(calc(100% - 32px), var(--content-width));
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header {
    min-height: 68px;
}

.site-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.site-logo {
    display: block;
    width: auto;
    height: 34px;
}

.site-nav,
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-nav a,
.site-footer a {
    color: var(--color-muted);
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
    color: var(--color-ink);
}

main {
    flex: 1;
    padding: 28px 0 44px;
}

.hero {
    width: 100%;
    max-width: 880px;
    margin: clamp(12px, 4vh, 42px) auto;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(217, 228, 231, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1,
h2 {
    color: var(--color-ink);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

h1 {
    max-width: 15ch;
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 6vw, 4.8rem);
    line-height: 1;
}

h2 {
    margin: 28px 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.lead {
    max-width: 700px;
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
}

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

.button-primary:hover {
    background: #11191b;
}

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

.transition-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.92rem;
}

.page-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow-wrap: anywhere;
}

.breadcrumbs {
    margin: 2px 0 26px;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.breadcrumbs [aria-current="page"] {
    color: var(--color-ink);
    font-weight: 700;
}

.page-intro {
    max-width: 780px;
    margin: 0 0 34px;
}

.page-intro h1 {
    max-width: 18ch;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 5.5vw, 4.25rem);
}

.hosting-navigation {
    margin: 0 0 42px;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.hosting-navigation-title {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hosting-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hosting-navigation a,
.hosting-navigation span {
    display: inline-block;
    padding: 4px 0;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.hosting-navigation a {
    color: var(--color-muted);
}

.hosting-navigation a:hover,
.hosting-navigation [aria-current="page"] {
    color: var(--color-ink);
}

.hosting-navigation [aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.content-section {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.content-section h2 {
    margin-top: 0;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.content-section p,
.cta-panel p {
    max-width: 720px;
    color: var(--color-muted);
    line-height: 1.7;
}

.content-section p:last-child,
.cta-panel p:last-child {
    margin-bottom: 0;
}

.content-section-muted {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface-muted);
}

.contact-list {
    margin: 20px 0 0;
    padding-left: 24px;
    color: var(--color-muted);
    line-height: 1.7;
}

.contact-email {
    display: inline-block;
    margin-top: 4px;
    color: var(--color-ink);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.company-address {
    margin: 18px 0;
    color: var(--color-muted);
    font-style: normal;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.94rem;
}

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

.hosting-card {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    text-decoration: none;
}

.hosting-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.hosting-card-label {
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hosting-card strong {
    font-size: 1.16rem;
    line-height: 1.25;
}

.hosting-card > span:last-child {
    color: var(--color-muted);
    line-height: 1.55;
}

.cta-panel {
    margin-top: 42px;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 18px;
    background: var(--color-ink);
    color: #fff;
}

.cta-panel h2 {
    margin-top: 0;
    color: #fff;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.cta-panel .button-primary {
    margin-top: 10px;
    background: #fff;
    color: var(--color-ink);
}

.cta-panel .button-primary:hover {
    background: #e9f7fa;
}

.legal-page {
    max-width: 820px;
    margin: 12px auto;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.legal-page h1 {
    max-width: none;
    margin-bottom: 26px;
    font-size: clamp(2rem, 5vw, 3.3rem);
}

.legal-page p {
    margin: 0 0 16px;
    color: var(--color-muted);
    line-height: 1.68;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-intro {
    color: var(--color-ink) !important;
}

.legal-meta {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.legal-documents,
.legal-toc {
    margin: 32px 0;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-surface-muted);
}

.legal-documents h2,
.legal-toc h2 {
    margin-top: 0;
}

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

.legal-document-card {
    display: flex;
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
    text-decoration: none;
}

.legal-document-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.legal-document-card strong {
    color: var(--color-ink);
}

.legal-document-card span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
    margin: 0;
    padding-left: 22px;
}

.legal-toc a {
    color: var(--color-muted);
}

.legal-copy h2 {
    scroll-margin-top: 20px;
}

.legal-copy ul {
    margin: -4px 0 18px;
    padding-left: 24px;
    color: var(--color-muted);
    line-height: 1.68;
}

.legal-copy li {
    padding-left: 4px;
}

.site-footer {
    padding: 20px 0 26px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 720px) {
    .site-header {
        min-height: 60px;
    }

    main {
        padding: 18px 0 34px;
    }

    .hero {
        margin: 8px auto;
        border-radius: 18px;
    }

    .legal-page {
        margin: 4px auto;
        border-radius: 16px;
    }

    .legal-document-grid,
    .legal-toc ol {
        grid-template-columns: 1fr;
    }

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

    .content-section-muted {
        padding: 22px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}
