/* =========================================================
   Digital Hokage | Cloud — cloud.digitalhokage.in
   Minimal, premium, developer-focused light-mode aesthetic.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-ink: #0a0a0a;
    --color-ink-soft: #404040;
    --color-muted: #6b7280;
    --color-faint: #9ca3af;
    --color-line: #eaeaea;
    --color-line-strong: #d4d4d8;

    --brand: #3B82F6;
    --brand-ink: #2563eb;
    --brand-soft: rgba(59, 130, 246, 0.08);
    --accent-purple: #8b5cf6;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
    --shadow-md: 0 4px 20px -8px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 24px 60px -24px rgba(59, 130, 246, 0.28);

    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --container: 1140px;
    --space-section: clamp(72px, 11vw, 140px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01';
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
strong { color: var(--color-ink); font-weight: 600; }

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 32px);
}

/* ---------- Decorative background ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(to right, rgba(10,10,10,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10,10,10,0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 65% at 50% 25%, #000 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 25%, #000 35%, transparent 100%);
}
.bg-blur {
    position: fixed;
    z-index: -1;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.55;
    pointer-events: none;
}
.bg-blur--blue {
    top: -160px;
    left: -160px;
    background: radial-gradient(circle, rgba(59,130,246,0.5), transparent 70%);
}
.bg-blur--purple {
    top: 240px;
    right: -200px;
    background: radial-gradient(circle, rgba(139,92,246,0.38), transparent 70%);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid var(--color-line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: -0.015em;
    font-size: 15px;
    color: var(--color-ink);
}
.brand__logo {
    width: auto;
    height: 80px;
    max-width: 200px;
    object-fit: contain;
}
.brand__divider { color: var(--color-line-strong); font-weight: 400; }
.brand__suffix {
    color: var(--brand);
    font-weight: 600;
}

.nav {
    display: none;
    align-items: center;
    gap: 4px;
}
@media (min-width: 760px) { .nav { display: flex; } }

.nav__link {
    position: relative;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}
.nav__link:hover { color: var(--color-ink); background: rgba(10,10,10,0.04); }
.nav__link.is-active {
    color: var(--color-ink);
    background: var(--brand-soft);
}
.nav__link.is-active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.15s ease,
                border-color 0.15s ease, box-shadow 0.18s ease, color 0.15s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 11px; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset,
                0 8px 18px -6px rgba(59,130,246,0.55);
}
.btn--primary:hover {
    background: var(--brand-ink);
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset,
                0 12px 28px -8px rgba(59,130,246,0.65);
    transform: translateY(-1px);
}

.btn--ghost {
    background: #fff;
    color: var(--color-ink);
    border-color: var(--color-line);
}
.btn--ghost:hover {
    border-color: var(--color-line-strong);
    background: #fafafa;
}

.btn--portal {
    padding: 9px 14px 9px 16px;
    font-size: 13.5px;
    background: var(--color-ink);
    color: #fff;
    border-radius: 9px;
    box-shadow: 0 6px 14px -8px rgba(10,10,10,0.5);
}
.btn--portal:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -10px rgba(10,10,10,0.55);
}
.btn--portal svg { opacity: 0.7; }

.btn--gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset,
                0 10px 24px -8px rgba(245,158,11,0.55);
}
.btn--gold:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset,
                0 14px 32px -10px rgba(245,158,11,0.7);
}

/* ---------- Hero ---------- */
.hero {
    padding: clamp(72px, 12vw, 140px) 0 clamp(48px, 8vw, 96px);
}
.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-ink-soft);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

.hero__title {
    font-size: clamp(38px, 6.8vw, 72px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.038em;
    color: var(--color-ink);
    max-width: 18ch;
}
.hero__title--accent {
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__subtitle {
    max-width: 62ch;
    font-size: clamp(15px, 1.55vw, 18px);
    color: var(--color-muted);
    line-height: 1.6;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-muted);
}
.hero__metric {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--color-ink);
    margin-right: 4px;
}

/* ---------- Section head ---------- */
.section-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.section-head__kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
}
.section-head__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--color-ink);
}
.section-head__sub {
    color: var(--color-muted);
    font-size: 16px;
    max-width: 56ch;
}

/* ---------- Features ---------- */
.features { padding: var(--space-section) 0; }
.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 720px) {
    .features__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-line-strong);
}
.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid rgba(59,130,246,0.18);
}
.feature__title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}
.feature__desc {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing { padding: var(--space-section) 0; }
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 840px;
    margin-inline: auto;
}
@media (min-width: 760px) {
    .pricing__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.pricing__grid--3 { max-width: 1200px; }
@media (min-width: 760px) {
    .pricing__grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
    .pricing__grid--3 { grid-template-columns: 1fr 1.08fr 1fr; align-items: stretch; gap: 22px; }
    .pricing__grid--3 .card--featured { transform: translateY(-10px); }
    .pricing__grid--3 .card--featured:hover { transform: translateY(-13px); }
}
.pricing__note {
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--color-faint);
}
.pricing__note a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.pricing__note a:hover { color: var(--brand-ink); }
.pricing__trust {
    margin: 36px auto 0;
    max-width: 980px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    padding: 14px 18px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.pricing__trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-ink-soft);
}
.pricing__trust svg { color: var(--brand); }

/* ---------- Card ---------- */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: clamp(28px, 3.5vw, 36px);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-line-strong);
}
.card--featured {
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}
.card--featured:hover {
    box-shadow: 0 28px 70px -22px rgba(59,130,246,0.36);
}
.card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--brand), var(--accent-purple));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.card--dark {
    background: linear-gradient(180deg, #0b0b14 0%, #16162a 100%);
    border-color: #2a2a3d;
    color: #f5f5f7;
}
.card--dark .card__title { color: #fff; }
.card--dark .card__tag,
.card--dark .card__sub,
.card--dark .card__foot { color: rgba(255,255,255,0.65); }
.card--dark .card__price { color: #fff; }
.card--dark .card__currency { color: rgba(255,255,255,0.7); }
.card--dark .card__period { color: rgba(255,255,255,0.6); }
.card--dark .features-list { border-top-color: rgba(255,255,255,0.12); }
.card--dark .features-list li { color: rgba(255,255,255,0.85); }
.card--dark .features-list strong { color: #fff; }
.card--dark .muted { color: rgba(255,255,255,0.55); }
.card--dark:hover {
    border-color: #f59e0b;
    box-shadow: 0 24px 70px -22px rgba(245,158,11,0.45);
}

.card__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 5px 11px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 6px 14px -6px rgba(59,130,246,0.65);
}
.card__badge--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 14px -6px rgba(245,158,11,0.7);
}
.card__pill {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    background: var(--color-line);
    border-radius: 999px;
}
.card__pill--brand { color: #fff; background: linear-gradient(135deg, var(--brand), var(--accent-purple)); }
.card__pill--gold { color: #1a1a1a; background: linear-gradient(135deg, #fcd34d, #f59e0b); }

.card__head { display: flex; flex-direction: column; gap: 6px; }
.card__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}
.card__tag {
    font-size: 14px;
    color: var(--color-muted);
}

.card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--color-ink);
    line-height: 1;
}
.card__currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-ink-soft);
    margin-right: 2px;
}
.card__period {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-muted);
    margin-left: 4px;
}
.card__sub {
    margin-top: -14px;
    font-size: 12.5px;
    font-family: var(--font-mono);
    color: var(--color-muted);
}
.card__strike {
    color: var(--color-faint);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    margin-right: 2px;
}
.card__foot {
    margin-top: -8px;
    text-align: center;
    font-size: 12px;
    color: var(--color-faint);
}
.features-list .muted { color: var(--color-faint); font-weight: 400; font-size: 12.5px; }
.features-list .is-disabled { color: var(--color-faint); text-decoration: line-through; text-decoration-color: var(--color-line-strong); }
.check--off {
    color: var(--color-faint);
    background: rgba(0,0,0,0.04);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--color-ink-soft);
}
.check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 50%;
    padding: 2px;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
    padding: 32px 0 var(--space-section);
}
.cta-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: clamp(32px, 5vw, 56px);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-strip__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.35), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,0.28), transparent 50%);
    pointer-events: none;
}
.cta-strip__inner > * { position: relative; z-index: 1; }
@media (min-width: 720px) {
    .cta-strip__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.cta-strip__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
}
.cta-strip__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--color-line);
    padding: 32px 0;
    background: rgba(255,255,255,0.6);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
}
@media (min-width: 720px) {
    .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px 28px; }
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col--brand { gap: 12px; }
.brand--footer { font-size: 16px; }
.footer-col__tag {
    font-size: 13.5px;
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 28ch;
}
.footer-col__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink);
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    font-size: 14px;
    color: var(--color-muted);
    transition: color .15s ease;
}
.footer-col ul a:hover { color: var(--brand); }
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
}
@media (min-width: 720px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13.5px;
    color: var(--color-muted);
    justify-content: center;
}
.footer__nav a { transition: color 0.15s ease; }
.footer__nav a:hover { color: var(--color-ink); }
.footer__copy {
    font-size: 13px;
    color: var(--color-faint);
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 6px;
}

/* =========================================================
   Extended sections — Why / WP / Perf / Security / SitePad /
   Speed / Advantage / Apps / FAQ
   ========================================================= */

/* ---------- Generic split layout ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}
@media (min-width: 880px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--reverse .split__media { order: 2; }
}
.split__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    background: #fafafa;
}
.split__body { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.split__body h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.026em;
    color: var(--color-ink);
    line-height: 1.15;
}
.split__body p { color: var(--color-muted); font-size: 15.5px; }
.split__body .btn { margin-top: 6px; }

/* shared check-list */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    color: var(--color-ink-soft);
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5 10.5l3 3 7-7' fill='none' stroke='%233B82F6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
}

/* ---------- Why ---------- */
.why { padding: var(--space-section) 0; }
.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }
.why__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-line-strong); }
.why__card img { width: 40px; height: 40px; }
.why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid rgba(59,130,246,0.18);
}
.why__card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.012em; color: var(--color-ink); }
.why__card p { font-size: 14px; color: var(--color-muted); line-height: 1.55; }

/* ---------- WordPress / SitePad sections ---------- */
.wordpress, .sitepad { padding: var(--space-section) 0; }

/* ---------- Performance chart ---------- */
.perf { padding: var(--space-section) 0; }
.perf__chart {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(24px, 3vw, 36px);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.perf__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
}
@media (max-width: 540px) {
    .perf__row { grid-template-columns: 1fr; gap: 8px; }
}
.perf__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
}
.perf__label img { width: 22px; height: 22px; }
.perf__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    color: var(--color-muted);
    background: #f3f4f6;
    border: 1px solid var(--color-line);
}
.perf__dot--ls {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: rgba(59,130,246,0.25);
}
.perf__bar {
    position: relative;
    height: 36px;
    border-radius: 8px;
    background: #f3f4f6;
    overflow: hidden;
}
.perf__bar::before {
    content: '';
    position: absolute;
    inset: 0;
    width: var(--w, 0);
    background: linear-gradient(90deg, #94a3b8, #64748b);
    border-radius: 8px;
    transition: width .8s ease;
}
.perf__bar--win::before {
    background: linear-gradient(90deg, var(--brand), var(--accent-purple));
    box-shadow: 0 4px 14px -4px rgba(59,130,246,0.55);
}
.perf__value {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding-left: 12px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.perf__note {
    margin-top: 20px;
    text-align: center;
    font-size: 12.5px;
    color: var(--color-faint);
}

/* ---------- Security ---------- */
.security { padding: var(--space-section) 0; }
.security__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) { .security__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .security__grid { grid-template-columns: repeat(3, 1fr); } }
.security__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff, #fafbff);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.security__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-line-strong); }
.security__card img { width: 48px; height: 48px; }
.sec__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: var(--brand);
    background: linear-gradient(135deg, var(--brand-soft), rgba(139,92,246,0.10));
    border: 1px solid rgba(59,130,246,0.18);
}
.security__card h3 { font-size: 16px; font-weight: 600; color: var(--color-ink); letter-spacing: -0.012em; }
.security__card p { font-size: 14px; color: var(--color-muted); line-height: 1.55; }

/* ---------- Speed ---------- */
.speed { padding: var(--space-section) 0; }
.speed__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) { .speed__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .speed__grid { grid-template-columns: repeat(4, 1fr); } }
.speed__stat {
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.speed__stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-line-strong); }
.speed__number {
    font-family: var(--font-mono);
    font-size: clamp(34px, 4.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--brand), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.speed__number span { font-size: 0.5em; color: var(--color-muted); -webkit-background-clip: initial; background-clip: initial; background: none; margin-left: 2px; font-family: var(--font-sans); font-weight: 600; }
.speed__stat h3 { margin-top: 14px; font-size: 15px; font-weight: 600; color: var(--color-ink); }
.speed__stat p { margin-top: 6px; font-size: 13.5px; color: var(--color-muted); }

/* ---------- Advantage ---------- */
.advantage { padding: var(--space-section) 0; }
.advantage__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 640px) { .advantage__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .advantage__grid { grid-template-columns: repeat(3, 1fr); } }
.advantage__item {
    padding: 32px 28px;
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .2s ease;
}
.advantage__item:hover { background: #fafbff; }
.advantage__item span {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.advantage__item h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; color: var(--color-ink); }
.advantage__item p { font-size: 14px; color: var(--color-muted); line-height: 1.55; }

/* ---------- Apps ---------- */
.apps { padding: var(--space-section) 0; }
.apps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (min-width: 540px) { .apps__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 760px) { .apps__grid { grid-template-columns: repeat(6, 1fr); } }
.apps__grid li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    color: var(--color-ink-soft);
    font-weight: 500;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.apps__grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.apps__grid img { width: 44px; height: 44px; object-fit: contain; }
.apps__more {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--color-muted);
}

/* ---------- FAQ ---------- */
.faq { padding: var(--space-section) 0; }
.faq__list {
    max-width: 820px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: var(--brand); box-shadow: var(--shadow-md); }
.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--color-ink);
    cursor: pointer;
    list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
    border-radius: 50%;
    background: var(--brand-soft);
    transition: transform .25s ease, background .2s ease;
}
.faq__item summary i::before,
.faq__item summary i::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}
.faq__item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item p {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* ---------- Logo card (WordPress feature) ---------- */
.split__media--badge { display: flex; align-items: center; justify-content: center; }
.logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 30% 25%, rgba(59,130,246,0.18), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(139,92,246,0.18), transparent 55%),
        linear-gradient(180deg, #ffffff, #f5f7ff);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
}
.logo-card img {
    width: 50%;
    max-width: 180px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 24px rgba(10,10,10,0.15));
}
.logo-card__chip {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-ink);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    z-index: 1;
}

/* ---------- Payments strip ---------- */
.payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 4px;
}
.payments__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-faint);
}
.payments__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
}
.payments__list img {
    height: 22px;
    width: auto;
    max-width: 64px;
    opacity: 0.65;
    filter: grayscale(1);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.payments__list li:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}

/* =========================================================
   Subpage layout (legal / company / help pages)
   ========================================================= */
.subpage-hero {
    padding: clamp(60px, 9vw, 110px) 0 clamp(28px, 4vw, 48px);
    text-align: center;
}
.subpage-hero .eyebrow { margin-bottom: 18px; }
.subpage-hero h1 {
    font-size: clamp(34px, 5.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 22ch;
    margin: 0 auto;
    color: var(--color-ink);
}
.subpage-hero h1 .accent {
    background: linear-gradient(135deg, var(--brand), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.subpage-hero p {
    max-width: 60ch;
    margin: 18px auto 0;
    color: var(--color-muted);
    font-size: clamp(15px, 1.5vw, 17px);
}
.subpage-hero__meta {
    margin-top: 18px;
    font-size: 13px;
    color: var(--color-faint);
    font-family: var(--font-mono);
}

.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 56px) 0 var(--space-section);
    color: var(--color-ink-soft);
    font-size: 15.5px;
    line-height: 1.75;
}
.prose h2 {
    margin-top: 48px;
    margin-bottom: 14px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--color-ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-ink);
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol {
    list-style: revert;
    padding-left: 24px;
    margin: 0 0 18px;
}
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-ink); }
.prose strong { color: var(--color-ink); }
.prose blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--brand);
    background: var(--brand-soft);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 15px;
    color: var(--color-ink-soft);
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 var(--space-section);
}
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; } }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-card {
    padding: 22px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.contact-card h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 8px;
}
.contact-card p { font-size: 15px; color: var(--color-ink); margin: 0; }
.contact-card a { color: var(--color-ink); text-decoration: none; font-weight: 500; }
.contact-card a:hover { color: var(--brand); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(24px, 3vw, 32px);
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-ink);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 11px 14px;
    font: inherit;
    font-size: 14.5px;
    color: var(--color-ink);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 9px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 8px; align-self: flex-start; }

/* Tutorials grid */
.tutorials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 var(--space-section);
}
@media (min-width: 640px) { .tutorials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .tutorials-grid { grid-template-columns: repeat(3, 1fr); } }
.tut-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tut-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.tut-card__tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--brand);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tut-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: -0.015em;
}
.tut-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* Reviews grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 var(--space-section);
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.review-card__stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 15px;
}
.review-card blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
    color: var(--color-ink-soft);
    line-height: 1.6;
}
.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--color-line);
}
.review-card__author strong { font-size: 14px; color: var(--color-ink); font-weight: 600; }
.review-card__author span { font-size: 12.5px; color: var(--color-muted); }
