/*
 * Path: public_html/assets/css/frontend.css
 */

/*
 * Header
 */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(7, 11, 29, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 55px rgba(7, 11, 29, 0.22);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 16px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo,
.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    white-space: nowrap;
}

.site-logo span,
.footer-logo span {
    color: var(--accent);
}

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

.site-nav a {
    position: relative;
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
    transition: 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 5px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.header-login {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    transition: 0.22s ease;
}

.header-login:hover {
    color: var(--accent);
    border-color: rgba(0, 212, 255, 0.45);
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-2px);
}

.header-cta {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--white);
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 14px 34px rgba(0, 212, 255, 0.16);
    transition: 0.22s ease;
}

.header-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

/*
 * Buttons
 */

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.22s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border-dark);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

/*
 * Shared labels
 */

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(1, 5, 110, 0.08);
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.danger-text {
    color: #ff3b3b !important;
}

/*
 * Home hero
 */

.hero-section {
    min-height: 100vh;
    padding: 110px 7% 90px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 24%, rgba(0, 212, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eef4ff 48%, #dffaff 100%);
    overflow: hidden;
}

.hero-grid {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-content h1 {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: var(--dark);
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-panel {
    position: relative;
    min-height: 500px;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(7, 11, 29, 0.98), rgba(17, 25, 54, 0.96));
    border: 1px solid var(--border);
    box-shadow: 0 34px 110px rgba(1, 5, 110, 0.34);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.22);
    filter: blur(8px);
}

.server-card {
    position: absolute;
    left: 42px;
    right: 42px;
    top: 54px;
    z-index: 2;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
}

.server-status {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.13);
}

.server-card strong {
    display: block;
    color: var(--white);
    font-size: 18px;
}

.server-card small {
    display: block;
    margin-top: 4px;
    color: var(--light-muted);
}

.metric-card {
    position: absolute;
    z-index: 2;
    width: 170px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.metric-card strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--primary);
}

.metric-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.metric-top {
    right: 46px;
    top: 178px;
}

.metric-bottom {
    left: 48px;
    bottom: 142px;
}

.hosting-stack {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 42px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hosting-stack span {
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.10);
    color: var(--white);
    border: 1px solid rgba(0, 212, 255, 0.16);
    font-weight: 800;
    font-size: 14px;
}

/*
 * Services strip
 */

.services-strip {
    max-width: 1240px;
    margin: -54px auto 80px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 5;
}

.services-strip article,
.pricing-card,
.why-grid article,
.content-card,
.blog-card,
.faq-list article {
    background: var(--white);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.services-strip article {
    padding: 30px;
    border-radius: 26px;
}

.services-strip article:hover,
.pricing-card:hover,
.why-grid article:hover,
.content-card:hover,
.blog-card:hover,
.faq-list article:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.45);
}

.services-strip article span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 900;
}

.services-strip article h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 22px;
}

.services-strip article p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

/*
 * Section intro
 */

.section-intro {
    max-width: 860px;
    margin: 0 auto 34px;
    padding: 0 20px;
    text-align: center;
}

.section-intro h2,
.why-content h2,
.cta-section h2 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.section-intro p,
.why-content p,
.cta-section p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

/*
 * Pricing preview
 */

.pricing-preview {
    max-width: 1240px;
    margin: 0 auto 96px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.page-pricing {
    margin-bottom: 72px;
}

.pricing-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-height: 520px;
}

.pricing-card.is-featured {
    background:
        radial-gradient(circle at 80% 0%, rgba(0, 212, 255, 0.24), transparent 30%),
        linear-gradient(145deg, #070b1d, #111936);
    color: var(--white);
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-14px);
}

.pricing-card.is-featured:hover {
    transform: translateY(-20px);
}

.plan-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.is-featured .plan-label {
    background: rgba(255, 255, 255, 0.10);
    color: var(--accent);
}

.pricing-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 27px;
    letter-spacing: -0.04em;
}

.pricing-card.is-featured h3 {
    color: var(--white);
}

.pricing-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-card.is-featured p {
    color: rgba(255, 255, 255, 0.72);
}

.price strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--dark);
}

.pricing-card.is-featured .price strong {
    color: var(--accent);
}

.price span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 800;
}

.pricing-card.is-featured .price span {
    color: rgba(255, 255, 255, 0.68);
}

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

.pricing-card li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-weight: 700;
}

.pricing-card.is-featured li {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.12);
}

.card-link {
    margin-top: auto;
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    transition: 0.22s ease;
}

.card-link:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.pricing-card.is-featured .card-link {
    background: var(--white);
    color: var(--primary);
}

/*
 * Why section
 */

.why-section {
    max-width: 1240px;
    margin: 0 auto 96px;
    padding: 72px 18px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 46px;
    align-items: start;
}

.why-content {
    position: sticky;
    top: 120px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-grid article {
    padding: 30px;
    border-radius: 28px;
}

.why-grid article span {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--accent);
    font-weight: 900;
}

.why-grid h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 22px;
}

.why-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/*
 * CTA section
 */

.cta-section {
    max-width: 1240px;
    margin: 0 auto 100px;
    padding: 58px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 212, 255, 0.22), transparent 26%),
        linear-gradient(145deg, #070b1d, #01056e);
    color: var(--white);
    box-shadow: 0 30px 100px rgba(1, 5, 110, 0.28);
}

.cta-section .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    color: var(--accent);
}

.cta-section h2 {
    max-width: 720px;
    color: var(--white);
}

.cta-section p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.72);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
}

/*
 * General frontend pages
 */

.page-shell {
    padding: 86px 7% 100px;
}

.page-hero {
    max-width: 1240px;
    margin: 0 auto 54px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 212, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eef4ff 58%, #dffaff 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow);
}

.split-hero {
    padding: 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.center-hero {
    padding: 76px 64px;
    text-align: center;
}

.center-hero .eyebrow,
.center-hero .hero-actions {
    justify-content: center;
}

.page-hero h1 {
    margin: 0 0 22px;
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.center-hero h1,
.center-hero p {
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    max-width: 720px;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.page-side-card,
.domain-search-card,
.email-preview-card {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, #070b1d, #111936);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(1, 5, 110, 0.28);
}

.page-side-card strong,
.domain-search-card span,
.email-preview-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 28px;
    font-family: var(--font-heading);
}

.page-side-card span,
.domain-search-card small,
.email-preview-card span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.danger-accent {
    border-color: rgba(255, 59, 59, 0.34);
}

.danger-accent strong {
    color: #ff3b3b;
}

.content-grid {
    max-width: 1240px;
    margin: 0 auto 72px;
    display: grid;
    gap: 22px;
}

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

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.content-card,
.blog-card,
.faq-list article {
    padding: 32px;
    border-radius: 28px;
}

.content-card h2,
.blog-card h2,
.faq-list h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.content-card p,
.blog-card p,
.faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

/*
 * Dark Feature
 */

.dark-feature {
    max-width: 1240px;
    margin: 0 auto 90px;
    padding: 58px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 85% 18%, rgba(0, 212, 255, 0.20), transparent 28%),
        linear-gradient(145deg, #070b1d, #01056e);
    color: var(--white);
    box-shadow: 0 30px 100px rgba(1, 5, 110, 0.28);
}

.dark-feature .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    color: var(--accent);
}

.dark-feature h2 {
    max-width: 900px;
    margin: 0 0 34px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-list div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-list span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.notice-card {
    max-width: 1240px;
    margin: 0 auto 88px;
    padding: 28px 32px;
    border-radius: 24px;
    background: rgba(255, 59, 59, 0.06);
    border: 1px solid rgba(255, 59, 59, 0.18);
}

.notice-card strong {
    display: block;
    margin-bottom: 10px;
    color: #c81717;
    font-family: var(--font-heading);
    font-size: 18px;
}

.notice-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/*
 * Domain and email cards
 */

.domain-search-card {
    display: grid;
    gap: 18px;
}

.fake-domain-form {
    display: flex;
    gap: 10px;
}

.fake-domain-form input {
    min-width: 0;
    flex: 1;
    height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    outline: none;
}

.fake-domain-form button {
    height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 16px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 900;
    cursor: pointer;
}

.email-preview-card {
    position: relative;
    overflow: hidden;
}

.email-line {
    width: 100%;
    height: 12px;
    margin-bottom: 34px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.18));
}

/*
 * FAQ
 */

.faq-list {
    max-width: 980px;
    margin: 0 auto 90px;
    display: grid;
    gap: 18px;
}

/*
 * Contact
 */

.contact-layout {
    max-width: 1240px;
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: start;
}

.contact-form,
.contact-info,
.auth-card,
.legal-content {
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow);
}

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

.contact-form label,
.auth-form label {
    display: grid;
    gap: 8px;
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(1, 5, 110, 0.14);
    background: #f8fbff;
    color: var(--text);
    outline: none;
    transition: 0.22s ease;
}

.contact-form textarea {
    padding-top: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.12);
}

.contact-form button,
.auth-form button {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    transition: 0.22s ease;
}

.contact-form button:hover,
.auth-form button:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.contact-info h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    color: var(--primary);
}

.contact-info p {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-info div {
    padding: 18px 0;
    border-top: 1px solid var(--border-dark);
}

.contact-info strong,
.contact-info span {
    display: block;
}

.contact-info strong {
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-info span {
    color: var(--muted);
}

/*
 * Auth
 */

.auth-page {
    min-height: calc(100vh - 78px);
    padding: 110px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at 20% 15%, rgba(0, 212, 255, 0.12), transparent 28%),
        radial-gradient(circle at 80% 85%, rgba(1, 5, 110, 0.10), transparent 30%),
        linear-gradient(135deg, #f7f9ff 0%, #edf3ff 100%);
}

.auth-card {
    width: min(100%, 560px);
    padding: 46px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 5, 110, 0.12);
    box-shadow: 0 30px 100px rgba(1, 5, 110, 0.16);
}

.wide-auth-card {
    width: min(100%, 920px);
}

.auth-card .eyebrow {
    margin-bottom: 26px;
}

.auth-card h1 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.auth-card p {
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.auth-form {
    gap: 24px;
}

.auth-form label {
    gap: 10px;
}

.auth-form input {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    font-size: 16px;
}

.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    box-shadow: 0 0 0 1000px #f8fbff inset;
    transition: background-color 9999s ease-in-out 0s;
}

.auth-form button {
    min-height: 58px;
    margin-top: 8px;
    font-size: 16px;
    box-shadow: 0 18px 45px rgba(1, 5, 110, 0.22);
}

.auth-switch {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(1, 5, 110, 0.10);
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 900;
}

.auth-switch a:hover {
    color: var(--accent);
}

.two-field-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.two-field-form button {
    grid-column: 1 / -1;
}

/*
 * Blog
 */

.blog-grid {
    max-width: 1240px;
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.blog-card a {
    display: inline-flex;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 900;
}

/*
 * Legal
 */

.legal-page {
    padding: 90px 20px;
}

.legal-content {
    max-width: 980px;
    margin: 0 auto;
}

.legal-content h1 {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.06em;
}

.legal-content h2 {
    margin: 34px 0 12px;
    font-family: var(--font-heading);
    color: var(--dark);
}

.legal-content p {
    color: var(--muted);
    line-height: 1.8;
}

/*
 * Footer
 */

.site-footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #070b1d 0%, #0b1023 55%, #01056e 100%);
    color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 72px 7% 46px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 42px;
}

.footer-brand p {
    max-width: 390px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.footer-column h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 16px;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 700;
    transition: 0.22s ease;
}

.footer-column a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 22px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/*
 * Responsive
 */

@media (max-width: 1100px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .footer-inner,
    .pricing-preview,
    .why-section {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 980px) {
    .hero-grid,
    .pricing-preview,
    .why-section,
    .split-hero,
    .contact-layout,
    .blog-grid,
    .two-columns,
    .three-columns,
    .feature-list,
    .two-field-form {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-panel {
        min-height: 440px;
    }

    .services-strip {
        grid-template-columns: 1fr;
    }

    .pricing-card.is-featured {
        transform: none;
    }

    .pricing-card.is-featured:hover {
        transform: translateY(-6px);
    }

    .why-content {
        position: static;
    }

    .split-hero,
    .center-hero,
    .dark-feature {
        padding: 42px 28px;
    }
}

@media (max-width: 720px) {
    .auth-page {
        padding: 70px 20px;
    }

    .auth-card {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .wide-auth-card {
        width: min(100%, 560px);
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 14px 20px;
        gap: 14px;
    }

    .site-logo {
        font-size: 22px;
    }

    .header-actions {
        width: 100%;
    }

    .header-login,
    .header-cta {
        flex: 1;
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav a {
        font-size: 13px;
        padding: 9px 11px;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p,
    .section-intro p,
    .why-content p,
    .cta-section p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-actions a,
    .cta-actions a {
        width: 100%;
    }

    .hero-panel {
        min-height: 500px;
        border-radius: 28px;
    }

    .server-card,
    .hosting-stack {
        left: 22px;
        right: 22px;
    }

    .metric-top {
        right: 22px;
    }

    .metric-bottom {
        left: 22px;
    }

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

    .pricing-card {
        padding: 28px;
        min-height: auto;
    }

    .page-shell {
        padding: 54px 20px 70px;
    }

    .page-hero {
        border-radius: 28px;
    }

    .fake-domain-form {
        flex-direction: column;
    }

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

    .contact-form,
    .contact-info,
    .auth-card,
    .legal-content {
        padding: 26px;
        border-radius: 24px;
    }

    .cta-section {
        margin-left: 20px;
        margin-right: 20px;
        padding: 34px;
        border-radius: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 54px 20px 34px;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom div {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}