/* Top Page Specific Styles */

.hero {
    background-color: var(--primary);
    background-image: radial-gradient(at 0% 0%, hsla(242, 100%, 70%, 0.2) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(188, 100%, 70%, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, hsla(242, 100%, 70%, 0.2) 0px, transparent 50%), radial-gradient(at 0% 100%, hsla(188, 100%, 70%, 0.15) 0px, transparent 50%);
    color: var(--white);
    padding: 40px 24px 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-rotating {
    transition: opacity .35s ease;
}

.hero-rotating.is-fading {
    opacity: .15;
}

.hero-dynamic {
    transition: background-color .7s ease, background-image .7s ease;
}

.hero-dynamic.is-loading {
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.20) 38%, rgba(255, 255, 255, 0.08) 56%),
        radial-gradient(at 0% 0%, rgba(203, 213, 225, 0.26) 0px, transparent 52%),
        radial-gradient(at 100% 0%, rgba(148, 163, 184, 0.18) 0px, transparent 52%),
        radial-gradient(at 100% 100%, rgba(226, 232, 240, 0.22) 0px, transparent 52%),
        radial-gradient(at 0% 100%, rgba(148, 163, 184, 0.16) 0px, transparent 52%);
    background-color: #6b7280;
    background-size: 220% 100%, auto, auto, auto, auto;
    animation: heroLoadingShimmer 1.8s linear infinite;
}

.hero-dynamic.is-loading #hero-catch,
.hero-dynamic.is-loading #hero-lead,
.hero-dynamic.is-loading #hero-cta {
    color: transparent !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
    background-size: 200% 100%;
    animation: heroLineShimmer 1.5s linear infinite;
    text-shadow: none;
}

.hero-dynamic.is-loading #hero-cta {
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.18;
    min-height: 2.5em;
    text-wrap: balance;
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    min-height: 3.6em;
    text-wrap: pretty;
}

.hero-cta-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-geo-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.hero-cta-button {
    padding: 16px 40px;
    font-size: 18px;
}

.maintenance-floating {
    max-width: 1200px;
    margin: -35px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.maintenance-card {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.maintenance-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.maintenance-status-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.maintenance-status-copy {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.maintenance-history-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #e6ffec;
    color: #008a10;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes heroLoadingShimmer {
    0% {
        background-position: 100% 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: -120% 0, 0 0, 0 0, 0 0, 0 0;
    }
}

@keyframes heroLineShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.tools-section {
    padding: 100px 24px 60px;
    background: var(--bg-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: block;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.tool-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent);
}

.tool-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.services-section {
    padding: 100px 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background: #f0f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 24px;
}

.service-link {
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

.domain-cta {
    background: var(--bg-light);
    padding: 100px 24px;
    text-align: center;
}

.domain-inner {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.top-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-shell--spaced {
    margin-top: 40px;
}

.top-shell--purpose {
    margin-top: 44px;
}

.top-shell--capabilities {
    margin-top: 38px;
}
.top-shell--pricing {
    margin-top: 24px;
}

.price-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.price-overview-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), #fff 46%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.price-overview-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.price-overview-title {
    color: var(--text-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
}

.price-overview-value {
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.price-overview-copy {
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.7;
}

.price-overview-note {
    margin: 14px 2px 0;
    color: var(--text-main);
    font-size: 13px;
    line-height: 1.8;
}


.top-shell--reasons {
    margin-top: 26px;
    margin-bottom: 54px;
}

.top-shell--cta {
    margin-top: 28px;
    margin-bottom: 40px;
}

.top-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.top-section-head--compact {
    margin-bottom: 22px;
}

/* Section title icons */
.top-section-title,
.news-head-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-section-title {
    margin: 0;
    font-size: 28px;
    color: var(--primary);
}

.section-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.section-title-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.section-title-icon--purpose {
    color: #166534;
    background: linear-gradient(180deg, rgba(220, 252, 231, 0.55), rgba(187, 247, 208, 0.34));
}

.section-title-icon--pricing {
    color: #b45309;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.6), rgba(254, 215, 170, 0.36));
}

.section-title-icon--capabilities {
    color: #1d4ed8;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.58), rgba(191, 219, 254, 0.36));
}

.section-title-icon--reasons {
    color: #7c2d12;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.58), rgba(253, 230, 138, 0.34));
}

.section-title-icon--news {
    color: #1e3a8a;
    background: linear-gradient(180deg, rgba(238, 242, 255, 0.58), rgba(199, 210, 254, 0.36));
}

.section-title-icon--notice {
    color: #9a3412;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.58), rgba(254, 215, 170, 0.34));
}

.top-section-copy {
    margin: 10px 0 0;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.7;
}

.top-section-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.dashboard-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dashboard-title {
    font-size: 16px;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-head-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.dashboard-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8fafc;
    text-decoration: none;
}

.dashboard-link-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
}

.dashboard-link-copy {
    font-size: 12px;
    color: var(--text-main);
    margin-top: 2px;
}

.top-icon-static {
    flex-shrink: 0;
}

.purpose-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.purpose-grid {
    gap: 18px;
}

.feature-grid {
    gap: 16px;
}

/* Sticky-note style cards */
.purpose-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 26px 18px 18px;
    border: 0;
    border-radius: 6px 16px 12px 14px;
    text-decoration: none;
    box-shadow:
        inset 0 0 0 1px rgba(113, 89, 52, 0.16),
        0 12px 24px rgba(15, 23, 42, 0.08),
        0 3px 0 rgba(113, 89, 52, 0.06);
    position: relative;
    overflow: visible;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.purpose-card::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 78px;
    height: 18px;
    transform: translateX(-50%) rotate(-4deg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
        linear-gradient(90deg, rgba(210, 226, 255, 0.54), rgba(184, 211, 255, 0.44));
    border: 1px solid rgba(113, 89, 52, 0.04);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
    opacity: 0.78;
    z-index: 1;
    pointer-events: none;
}

.purpose-card:hover {
    transform: translateY(-4px) rotate(0deg);
    box-shadow:
        inset 0 0 0 1px rgba(113, 89, 52, 0.16),
        0 16px 32px rgba(15, 23, 42, 0.12),
        0 4px 0 rgba(113, 89, 52, 0.08);
}

.purpose-card > span:last-child,
.purpose-badge {
    position: relative;
    z-index: 2;
}

.feature-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 24px 18px 18px;
    border: 0;
    border-radius: 8px 14px 12px 14px;
    text-decoration: none;
    box-shadow:
        inset 0 0 0 1px rgba(113, 89, 52, 0.14),
        0 10px 22px rgba(15, 23, 42, 0.07),
        0 3px 0 rgba(113, 89, 52, 0.05);
    position: relative;
    overflow: visible;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fffdf6;
    flex-direction: column;
    gap: 10px;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;
    width: 62px;
    height: 16px;
    transform: rotate(-5deg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.14)),
        linear-gradient(90deg, rgba(250, 232, 178, 0.52), rgba(249, 219, 144, 0.42));
    border: 1px solid rgba(113, 89, 52, 0.04);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
    opacity: 0.76;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px) rotate(0deg);
    box-shadow:
        inset 0 0 0 1px rgba(113, 89, 52, 0.14),
        0 14px 28px rgba(15, 23, 42, 0.1),
        0 4px 0 rgba(113, 89, 52, 0.06);
}

/* Stamp-like badges */
.purpose-badge,
.feature-badge {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 900;
    border: 0;
    position: relative;
    overflow: visible;
    isolation: isolate;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transform: rotate(-3deg);
}

.purpose-badge {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 12px;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.08);
}

.feature-badge {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 11px;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.08);
}

.purpose-badge::before,
.feature-badge::before,
.purpose-badge::after,
.feature-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    pointer-events: none;
}

.purpose-badge::before,
.feature-badge::before {
    inset: 1px;
    background: repeating-conic-gradient(from -8deg, currentColor 0 14deg, transparent 14deg 30deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
    opacity: 0.32;
}

.purpose-badge::after,
.feature-badge::after {
    inset: 6px;
    border: 1px solid currentColor;
    opacity: 0.14;
}

/* Slightly varied stamp angles */
.purpose-card:nth-child(4n+1) .purpose-badge,
.feature-grid > :nth-child(4n+1) .feature-badge {
    transform: rotate(-7deg);
}

.purpose-card:nth-child(4n+2) .purpose-badge,
.feature-grid > :nth-child(4n+2) .feature-badge {
    transform: rotate(4deg);
}

.purpose-card:nth-child(4n+3) .purpose-badge,
.feature-grid > :nth-child(4n+3) .feature-badge {
    transform: rotate(-2deg);
}

.purpose-card:nth-child(4n+4) .purpose-badge,
.feature-grid > :nth-child(4n+4) .feature-badge {
    transform: rotate(6deg);
}

.purpose-title,
.feature-title {
    display: block;
    color: var(--text-heading);
    font-size: 16px;
    font-weight: 800;
}

.feature-title {
    font-size: 14px;
}

.purpose-copy,
.feature-copy {
    display: block;
    margin-top: 6px;
    color: var(--text-main);
    font-size: 12px;
    line-height: 1.7;
}

.feature-copy {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card--hosting {
    background:
        linear-gradient(180deg, rgba(255, 253, 232, 0.96), rgba(248, 250, 232, 0.98)),
        repeating-linear-gradient(180deg, rgba(82, 155, 55, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(-0.7deg);
}

.purpose-card--hosting {
    background:
        linear-gradient(180deg, rgba(255, 253, 232, 0.96), rgba(248, 250, 232, 0.98)),
        repeating-linear-gradient(180deg, rgba(82, 155, 55, 0.06) 0 1px, transparent 1px 26px);
    border-top: 0;
    transform: rotate(-1.2deg);
}

.purpose-badge--hosting,
.feature-badge--hosting {
    color: var(--primary);
    background: radial-gradient(circle at 30% 30%, rgba(82, 155, 55, 0.14), rgba(82, 155, 55, 0.06) 58%, rgba(82, 155, 55, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(82, 155, 55, 0.12);
}

.feature-card--mail {
    background:
        linear-gradient(180deg, rgba(239, 253, 250, 0.98), rgba(233, 250, 246, 0.98)),
        repeating-linear-gradient(180deg, rgba(15, 118, 110, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(0.6deg);
}

.purpose-card--mail {
    background:
        linear-gradient(180deg, rgba(239, 253, 250, 0.98), rgba(233, 250, 246, 0.98)),
        repeating-linear-gradient(180deg, rgba(15, 118, 110, 0.06) 0 1px, transparent 1px 26px);
    border-top: 0;
    transform: rotate(1deg);
}

.purpose-badge--mail,
.feature-badge--mail {
    color: #0f766e;
    background: radial-gradient(circle at 30% 30%, rgba(15, 118, 110, 0.14), rgba(15, 118, 110, 0.06) 58%, rgba(15, 118, 110, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.12);
}

.feature-card--internet {
    background:
        linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(232, 242, 255, 0.98)),
        repeating-linear-gradient(180deg, rgba(29, 78, 216, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(-0.35deg);
}

.purpose-card--internet {
    background:
        linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(232, 242, 255, 0.98)),
        repeating-linear-gradient(180deg, rgba(29, 78, 216, 0.06) 0 1px, transparent 1px 26px);
    border-top: 0;
    transform: rotate(-0.6deg);
}

.purpose-badge--internet,
.feature-badge--internet {
    color: #1d4ed8;
    background: radial-gradient(circle at 30% 30%, rgba(29, 78, 216, 0.14), rgba(29, 78, 216, 0.06) 58%, rgba(29, 78, 216, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(29, 78, 216, 0.12);
}

.feature-card--dx {
    background:
        linear-gradient(180deg, rgba(238, 242, 255, 0.98), rgba(233, 238, 252, 0.98)),
        repeating-linear-gradient(180deg, rgba(30, 58, 138, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(0.8deg);
}

.purpose-card--dx {
    background:
        linear-gradient(180deg, rgba(238, 242, 255, 0.98), rgba(233, 238, 252, 0.98)),
        repeating-linear-gradient(180deg, rgba(30, 58, 138, 0.06) 0 1px, transparent 1px 26px);
    border-top: 0;
    transform: rotate(1.3deg);
}

.purpose-badge--dx,
.feature-badge--dx {
    color: #1e3a8a;
    background: radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.14), rgba(30, 58, 138, 0.06) 58%, rgba(30, 58, 138, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(30, 58, 138, 0.12);
}

.feature-card--brown {
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(252, 242, 229, 0.98)),
        repeating-linear-gradient(180deg, rgba(180, 83, 9, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(-0.45deg);
}

.feature-badge--brown {
    color: #92400e;
    background: radial-gradient(circle at 30% 30%, rgba(180, 83, 9, 0.14), rgba(180, 83, 9, 0.06) 58%, rgba(180, 83, 9, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(180, 83, 9, 0.10);
}

.feature-card--amber {
    background:
        linear-gradient(180deg, rgba(255, 251, 235, 0.98), rgba(252, 247, 226, 0.98)),
        repeating-linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(0.35deg);
}

.feature-badge--amber {
    color: #b45309;
    background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.06) 58%, rgba(245, 158, 11, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.10);
}

.feature-card--orange {
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(253, 241, 229, 0.98)),
        repeating-linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(-0.3deg);
}

.feature-badge--orange {
    color: #c2410c;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.06) 58%, rgba(249, 115, 22, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.10);
}

.feature-card--red {
    background:
        linear-gradient(180deg, rgba(254, 242, 242, 0.98), rgba(252, 236, 236, 0.98)),
        repeating-linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0 1px, transparent 1px 26px);
    transform: rotate(0.7deg);
}

.feature-badge--red {
    color: #dc2626;
    background: radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.06) 58%, rgba(239, 68, 68, 0.03) 100%);
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.10);
}

.recommended-section {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 24px;
}

.recommended-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 800;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.recommended-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    height: 100%;
}

.recommended-hero {
    height: 160px;
    position: relative;
}

.recommended-hero--hosting {
    background: linear-gradient(135deg, rgba(82, 155, 55, 0.9), rgba(34, 71, 22, 0.9)), url('../images/subpage-hero-default.png') center/cover;
}

.recommended-hero--ssl {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(2, 132, 199, 0.9));
}

.recommended-hero--quicklp {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(124, 58, 237, 0.9));
}

.recommended-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.recommended-hero-overlay--light {
    opacity: 0.1;
}

.recommended-hero-overlay--strong {
    opacity: 0.12;
}

.recommended-hero-copy {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: white;
}

.recommended-hero-icon {
    margin-bottom: 8px;
}

.recommended-hero-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.recommended-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recommended-text {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    flex-grow: 1;
}

.recommended-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-section {
    padding: 0 24px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.news-column {
    flex: 1;
    min-width: 300px;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.news-head-title {
    font-size: 24px;
    color: var(--primary);
    margin: 0;
}

.news-head-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.news-date {
    font-weight: 700;
    color: var(--text-main);
    font-size: 14px;
    white-space: nowrap;
}

.news-link {
    display: block;
    flex: 1;
    font-size: 15px;
    color: var(--text-heading);
    font-weight: 500;
    line-height: 1.7;
}

.notice-lead {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.8;
    padding: 14px 16px 15px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.notice-lead-title {
    color: var(--text-heading);
    display: inline-block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 800;
}

.notice-link {
    color: var(--accent);
    text-decoration: underline;
}

.notice-item {
    font-size: 14px;
    color: var(--text-main);
    padding-top: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.notice-item--lined {
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.notice-item-link {
    display: block;
    flex: 1;
    color: var(--text-heading);
    font-weight: 500;
}

.domain-copy {
    margin-top: 16px;
    color: var(--text-main);
}

.domain-title {
    font-size: 32px;
}

.domain-listing {
    margin-top: 24px;
    color: #94a3b8;
    font-size: 14px;
}

.domain-jprs {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 10px 12px;
}

.domain-jprs-logo {
    height: 36px;
    width: auto;
}

.domain-jprs-copy {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.top-cta-panel {
    margin: 0 0 28px;
    padding: 24px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, #103453, #0f766e);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.top-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.top-cta-copy {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 720px;
}

.top-cta-title {
    margin: 0;
    font-size: 28px;
    color: #fff;
}

.top-cta-text {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.top-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.top-cta-button {
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 800;
}

.top-cta-button--primary {
    background: #fff;
    color: #0f172a;
}

.top-cta-button--ghost {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
}

.related-panel {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff, #eef4fb);
    border: 1px solid #d9e5f0;
}

.related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.related-title {
    font-size: 22px;
    margin: 0;
    color: var(--primary);
}

.related-copy {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.7;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
}

.related-card--engawa {
    border: 1px solid #dbe4ef;
    background: linear-gradient(135deg, #f7fafc, #eef6ff);
}

.related-card--studio {
    border: 1px solid #f1d2d8;
    background: linear-gradient(135deg, #fff7f8, #fff0f3);
}

.related-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    flex-shrink: 0;
}

.related-logo--engawa {
    border: 1px solid #dbe4ef;
}

.related-logo--studio {
    border: 1px solid #f1d2d8;
}

.related-body {
    min-width: 0;
    flex: 1;
}

.related-name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.related-text {
    font-size: 12px;
    color: var(--text-main);
    margin-top: 3px;
    line-height: 1.5;
}

.related-url {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
}

.related-url--engawa {
    color: var(--accent);
}

.related-url--studio {
    color: #c2415b;
}

.related-pill {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
}

.related-pill--engawa {
    background: var(--accent);
}

.related-pill--studio {
    background: #c2415b;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 24px 60px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        letter-spacing: -1px;
        min-height: 2.7em;
    }

    .hero p {
        min-height: 4.4em;
        margin-bottom: 18px;
    }

    .hero-cta-wrap {
        margin-top: 14px;
        margin-bottom: 4px;
    }

    #hero-cta.btn-modern {
        padding: 12px 22px !important;
        font-size: 15px !important;
        border-radius: 999px;
    }

    .maintenance-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .maintenance-status-row {
        flex-direction: column;
        gap: 10px !important;
        width: 100%;
    }

    .maintenance-status-text {
        line-height: 1.5;
        word-break: keep-all;
    }

    .top-shell,
    .recommended-section,
    .news-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .dashboard-panel {
        padding: 18px 16px;
    }

    .top-section-title,
    .recommended-title,
    .top-cta-title {
        font-size: 24px;
    }

    .top-section-title,
    .news-head-title {
        gap: 8px;
    }

    .section-title-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .section-title-icon svg {
        width: 20px;
        height: 20px;
    }

    .purpose-grid,
    .feature-grid,
    .recommended-grid,
    .related-grid,
    .price-overview-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card,
    .feature-card {
        padding: 16px;
    }

    .purpose-card {
        transform: none;
        padding: 22px 16px 16px;
    }

    .purpose-card::before {
        width: 64px;
        height: 16px;
        top: -8px;
    }

    .feature-card {
        transform: none;
        padding: 22px 16px 16px;
    }

    .feature-card::before {
        width: 56px;
        height: 14px;
        top: -7px;
        left: 18px;
    }

    .recommended-body {
        padding: 20px;
    }

    .news-section {
        gap: 28px;
    }

    .domain-jprs {
        flex-direction: column;
        text-align: center;
    }

    .top-cta-panel,
    .related-panel {
        padding: 20px 18px;
    }

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

    .domain-inner {
        padding: 28px 16px;
        border-radius: 18px;
    }
}
