.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(36, 49, 73, 0.7);
    background: rgba(8, 12, 20, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.08rem;
    letter-spacing: -0.045em;
}

.brand img {
    width: 34px;
    height: 34px;
}

.brand-name span {
    color: var(--text);
    font-weight: 680;
}

.brand-name strong {
    color: var(--brand);
    font-weight: 900;
    margin-left: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 680;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-nav a:hover { color: var(--text); }

.site-nav .nav-cta {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
}

.site-nav .nav-cta:hover {
    border-color: rgba(56, 189, 248, 0.48);
    background: var(--surface-2);
}

.nav-toggle { display: none; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 96px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow-one {
    width: 560px;
    height: 560px;
    right: -230px;
    top: -260px;
    background: rgba(14, 165, 233, 0.13);
}

.hero-glow-two {
    width: 380px;
    height: 380px;
    left: 25%;
    bottom: -330px;
    background: rgba(52, 211, 153, 0.07);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
    align-items: center;
}

.pill,
.availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.pill {
    padding: 7px 11px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(15, 23, 36, 0.72);
    color: var(--muted);
    font-size: 0.71rem;
    font-weight: 830;
    letter-spacing: .11em;
}

.live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--status);
    box-shadow: 0 0 0 5px var(--status-soft);
}

.hero h1 {
    max-width: 760px;
    margin: 23px 0 0;
    font-size: clamp(3.3rem, 6.7vw, 6.7rem);
    line-height: .94;
    letter-spacing: -0.073em;
}

.hero h1 span {
    display: block;
    color: var(--muted);
}

.hero-copy {
    max-width: 700px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.65vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 11px;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 790;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-1px); }

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

.button-primary:hover {
    background: var(--brand);
    color: var(--bg-deep);
}

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

.button-secondary:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: var(--surface-2);
}

.button-full { width: 100%; }
.button-large { min-height: 56px; padding-inline: 23px; }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
    color: var(--muted-2);
    font-size: .82rem;
    font-weight: 650;
}

.hero-points span {
    color: var(--status);
    margin-right: 5px;
}

.hero-visual {
    position: relative;
    min-height: 510px;
}

.browser-card {
    position: absolute;
    inset: 45px 10px 20px 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #0b111b;
    box-shadow: var(--shadow);
    transform: rotate(1.3deg);
}

.browser-top {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--surface);
}

.browser-top > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #32415a;
}

.browser-address {
    width: 48%;
    margin-left: 12px;
    padding: 6px 12px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--muted-2);
    background: #0b111b;
    font-size: .68rem;
}

.browser-body {
    padding: 74px 48px;
}

.mock-kicker,
.mock-title,
.mock-copy,
.mock-buttons span {
    border-radius: 999px;
}

.mock-kicker {
    width: 90px;
    height: 8px;
    background: var(--status);
    opacity: .9;
}

.mock-title {
    width: 88%;
    height: 22px;
    margin-top: 24px;
    background: #e6edf7;
}

.mock-title.short {
    width: 62%;
    margin-top: 10px;
}

.mock-copy {
    width: 77%;
    height: 9px;
    margin-top: 30px;
    background: #3e4a5f;
}

.mock-copy.small {
    width: 58%;
    margin-top: 9px;
}

.mock-buttons {
    display: flex;
    gap: 10px;
    margin-top: 33px;
}

.mock-buttons span {
    display: block;
    width: 110px;
    height: 38px;
    border-radius: 8px;
    background: var(--brand-strong);
}

.mock-buttons span + span {
    width: 95px;
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(15, 23, 36, .94);
    box-shadow: 0 18px 50px rgba(0,0,0,.32);
    backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card small,
.floating-card span { display: block; }

.floating-label {
    color: var(--muted-2);
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .13em;
}

.performance-card {
    width: 215px;
    right: -13px;
    top: 0;
}

.performance-card strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
    font-size: .88rem;
}

.performance-card small {
    margin-top: 8px;
    color: var(--muted-2);
    font-size: .66rem;
}

.mini-progress {
    height: 5px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #253149;
}

.mini-progress span {
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, var(--status), var(--brand));
}

.ownership-card {
    width: 205px;
    left: -18px;
    bottom: 0;
}

.ownership-card strong {
    margin-top: 8px;
    font-size: 1rem;
}

.ownership-card small {
    margin-top: 4px;
    color: var(--muted-2);
    font-size: .72rem;
}

.trust-strip {
    border-block: 1px solid var(--border-soft);
    background: rgba(15, 23, 36, .56);
}

.trust-grid {
    min-height: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.trust-grid span {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.trust-grid span + span {
    border-left: 1px solid var(--border-soft);
}

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

.service-card,
.price-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(19, 30, 46, .94), rgba(12, 19, 30, .98));
}

.service-card {
    min-height: 410px;
    padding: 31px;
}

.service-card-featured {
    border-color: rgba(56, 189, 248, .36);
    box-shadow: inset 0 1px 0 rgba(56, 189, 248, .14);
}

.service-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--status);
    background: var(--surface);
    font-size: .68rem;
    font-weight: 900;
}

.service-card h3 {
    margin: 56px 0 12px;
    font-size: 1.55rem;
    letter-spacing: -.03em;
}

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

.service-card ul,
.price-card ul {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
    color: var(--muted);
    font-size: .88rem;
}

.service-card li,
.price-card li {
    position: relative;
    padding: 9px 0 9px 22px;
    border-top: 1px solid rgba(36, 49, 73, .46);
}

.service-card li::before,
.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--status);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--border);
}

.process-step {
    min-height: 245px;
    padding: 29px 25px;
    background: var(--surface);
}

.process-step span {
    color: var(--brand);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.process-step h3 {
    margin: 54px 0 9px;
    font-size: 1.18rem;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.performance-section {
    border-block: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at 80% 20%, rgba(56,189,248,.08), transparent 28rem),
        var(--bg-deep);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 80px;
    align-items: center;
}

.section-copy { max-width: 680px; }

.feature-list { margin-top: 34px; }

.feature-list > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 15px 0;
    border-top: 1px solid var(--border-soft);
}

.feature-list span {
    color: var(--brand);
    font-size: .7rem;
    font-weight: 900;
}

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

.feature-list strong { color: var(--text); }

.metrics-panel {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    box-shadow: var(--shadow);
}

.metrics-header,
.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.metrics-header {
    margin-bottom: 35px;
    color: var(--muted-2);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.metrics-header .availability {
    color: var(--status);
}

.metric-row {
    margin-top: 21px;
    font-size: .87rem;
}

.metric-row span { color: var(--muted); }
.metric-row strong { color: var(--text); }

.metric-bar {
    height: 7px;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #263247;
}

.metric-bar span {
    display: block;
    width: var(--metric);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-strong), var(--status));
}

.metrics-note {
    margin: 27px 0 0;
    color: var(--muted-2);
    font-size: .71rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.price-card {
    padding: 31px;
}

.price-card-featured {
    border-color: rgba(56,189,248,.57);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(56, 189, 248, .16);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.plan-label {
    margin: 0;
    color: var(--status);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.price-card h3 {
    margin: 25px 0 0;
    font-size: 1.38rem;
}

.price {
    margin-top: 10px;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -.055em;
}

.price span {
    color: var(--muted-2);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.price-intro {
    min-height: 48px;
    color: var(--muted);
}

.price-card ul { min-height: 230px; margin-bottom: 25px; }

.pricing-note {
    max-width: 760px;
    margin: 25px auto 0;
    color: var(--muted-2);
    text-align: center;
    font-size: .78rem;
}

.partner-section {
    border-block: 1px solid var(--border-soft);
    background: var(--bg-deep);
}

.partner-card {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 70px;
    align-items: center;
    padding-block: 64px;
}

.partner-copy > p { max-width: 690px; }

.partner-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 29px 0 31px;
}

.partner-points span {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface);
    font-size: .72rem;
}

.partner-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.partner-flow > div {
    width: 145px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.partner-flow .flow-on {
    border-color: rgba(56,189,248,.46);
    box-shadow: 0 0 0 1px rgba(56,189,248,.05), 0 22px 60px rgba(0,0,0,.28);
}

.partner-flow span {
    color: var(--muted-2);
    font-size: .57rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.partner-flow strong {
    margin-top: 9px;
    font-size: .84rem;
}

.partner-flow .flow-arrow {
    color: var(--brand);
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.faq-list details {
    border-top: 1px solid var(--border);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    padding: 22px 42px 22px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 740;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 18px;
    color: var(--brand);
    font-size: 1.3rem;
    font-weight: 400;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p {
    max-width: 760px;
    margin: -5px 0 22px;
    color: var(--muted);
}

.final-cta-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 80% 60%, rgba(56,189,248,.12), transparent 26rem),
        linear-gradient(180deg, var(--surface), var(--bg-deep));
}

.final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.final-cta h2 { margin-top: 23px; }
.final-cta h2 span { color: var(--brand); }

.final-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.final-actions > span {
    color: var(--muted-2);
    font-size: .79rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .65fr .65fr 1fr;
    gap: 70px;
    padding: 62px 0 42px;
}

.footer-brand > p {
    max-width: 390px;
    color: var(--muted);
}

.footer-brand .availability {
    color: var(--muted-2);
    font-size: .74rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    margin: 0 0 9px;
    color: var(--muted-2);
    font-size: .69rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted);
    text-decoration: none;
    font-size: .86rem;
}

.footer-column a:hover { color: var(--text); }

.footer-bottom {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted-2);
    font-size: .74rem;
}


/* v0.3 — Text-only wordmark */
.brand-text-only {
    gap: 0;
    white-space: nowrap;
    font-size: 1.28rem;
    line-height: 1;
    letter-spacing: -0.055em;
}
.brand-text-only .brand-web,
.brand-text-only .brand-agency {
    color: var(--text);
    font-weight: 760;
}
.brand-text-only .brand-agency { margin-left: .28em; }
.brand-text-only .brand-on {
    margin-left: .28em;
    color: var(--brand);
    font-weight: 920;
}
.site-header .brand-text-only { font-size: 1.34rem; }


/* Inner pages */
.inner-hero {
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at 78% 10%, rgba(56,189,248,.09), transparent 26rem),
        var(--bg);
}
.inner-hero-stack {
    max-width: 1080px;
}
.inner-hero-title {
    max-width: 1020px;
}
.inner-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .95;
    letter-spacing: -.068em;
}
.inner-hero h1 span { color: var(--muted); }
.inner-hero-intro {
    max-width: 760px;
    margin-top: 30px;
}
.inner-hero-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.work-grid { display: grid; gap: 24px; }
.work-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}
.work-preview {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background:
        radial-gradient(circle at 80% 10%, rgba(56,189,248,.15), transparent 20rem),
        #0a111c;
}
.work-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--status);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .11em;
}
.work-window {
    width: 72%;
    min-height: 220px;
    margin: 82px auto 0;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.work-line { height: 12px; margin-bottom: 10px; border-radius: 999px; background: #36445b; }
.work-line.xl { width: 82%; height: 18px; background: var(--text); }
.work-line.lg { width: 65%; height: 18px; background: var(--text); }
.work-line.sm { width: 55%; }
.work-button { width: 110px; height: 38px; margin-top: 28px; border-radius: 8px; background: var(--brand-strong); }
.work-window-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    align-content: center;
}
.work-mini-card { height: 110px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-2); }
.agency-preview-flow {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.agency-preview-flow span,
.agency-preview-flow strong {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    font-size: .8rem;
}
.agency-preview-flow strong { border-color: rgba(56,189,248,.55); color: var(--brand); }
.agency-preview-flow b { color: var(--brand); }
.work-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.work-copy h2 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }
.work-copy p:last-child { color: var(--muted); }

.about-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}
.about-grid h2 { margin: 0; font-size: clamp(2.1rem,4vw,3.8rem); line-height:1.02; letter-spacing:-.05em; }
.about-copy { max-width: 760px; color: var(--muted); font-size: 1.03rem; }
.values-grid,
.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
}
.values-grid article,
.partner-benefits-grid article {
    min-height: 250px;
    padding: 28px;
    background: var(--surface);
}
.values-grid span,
.partner-benefits-grid span {
    color: var(--brand);
    font-size: .7rem;
    font-weight: 900;
}
.values-grid h3,
.partner-benefits-grid h3 { margin: 55px 0 10px; }
.values-grid p,
.partner-benefits-grid p { color: var(--muted); margin:0; font-size:.87rem; }
.partner-card-page { padding-block: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-card {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}
.contact-card-primary { border-color: rgba(56,189,248,.42); }
.contact-card h2 { margin: 40px 0 10px; font-size: 2rem; letter-spacing:-.04em; }
.contact-card p:not(.eyebrow) { color: var(--muted); max-width: 580px; }
.contact-card .button { margin-top: 25px; }

.brief-guide { display:grid; grid-template-columns:.7fr 1.3fr; gap:70px; }
.brief-grid { border-top:1px solid var(--border); }
.brief-grid > div {
    display:grid;
    grid-template-columns:50px 1fr;
    gap:16px;
    padding:18px 0;
    border-bottom:1px solid var(--border);
}
.brief-grid span { color:var(--brand); font-size:.7rem; font-weight:900; }


.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.work-tags span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted-2);
    background: var(--surface-2);
    font-size: .68rem;
    font-weight: 760;
}

.contact-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    margin: 24px 0 4px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    font-size: .78rem;
}
.contact-meta span { color: var(--muted-2); }
.contact-meta strong { color: var(--text); font-weight: 720; }
.contact-next-section { padding-top: 50px; }


/* v0.5 — Blog, legal and error pages */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.blog-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    text-decoration: none;
}
.blog-card:hover {
    border-color: rgba(56,189,248,.42);
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted-2);
    font-size: .68rem;
    font-weight: 780;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.blog-card h2 {
    margin: 68px 0 12px;
    font-size: 1.55rem;
    line-height: 1.12;
    letter-spacing: -.035em;
}
.blog-card p {
    margin: 0;
    color: var(--muted);
}
.blog-card-arrow {
    margin-top: auto;
    padding-top: 30px;
    color: var(--brand);
    font-weight: 850;
}

.article-hero {
    padding: 92px 0 58px;
    border-bottom: 1px solid var(--border-soft);
}
.article-shell {
    max-width: 880px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-bottom: 23px;
    color: var(--muted-2);
    font-size: .72rem;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.article-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .98;
    letter-spacing: -.065em;
}
.article-intro {
    max-width: 720px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 1.12rem;
}
.article-content {
    max-width: 780px;
    padding: 72px 0 100px;
}
.article-content h2 {
    margin: 55px 0 14px;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -.04em;
}
.article-content h3 {
    margin-top: 38px;
    font-size: 1.35rem;
}
.article-content p,
.article-content li {
    color: #c1cad8;
}
.article-content a {
    color: var(--brand);
}
.article-content ul,
.article-content ol {
    padding-left: 1.25rem;
}
.article-content blockquote {
    margin: 32px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--brand);
    color: var(--muted);
}

.legal-hero {
    padding: 78px 0 46px;
    border-bottom: 1px solid var(--border-soft);
}
.legal-shell {
    max-width: 850px;
}
.legal-hero h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    letter-spacing: -.055em;
}
.legal-status {
    display: inline-flex;
    margin-top: 22px;
    padding: 7px 10px;
    border: 1px solid rgba(251,191,36,.35);
    border-radius: 9px;
    background: rgba(251,191,36,.08);
    color: #fbbf24;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
}
.legal-content {
    max-width: 780px;
    padding: 60px 0 100px;
}
.legal-content h2 {
    margin-top: 42px;
    font-size: 1.55rem;
}
.legal-content p,
.legal-content li {
    color: #c1cad8;
}
.legal-placeholder {
    color: #fbbf24;
    font-weight: 800;
}

.error-page {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
}
.error-code {
    color: var(--brand);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .16em;
}
.error-page h1 {
    margin: 12px 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: -.07em;
}
.error-page p {
    max-width: 580px;
    margin: 0 auto 28px;
    color: var(--muted);
}


/* v0.6 — Conversion forms */
.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 42px;
    align-items: start;
}
.enquiry-form-panel {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.form-heading {
    margin-bottom: 30px;
}
.form-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}
.form-heading > p:last-child {
    max-width: 660px;
    color: var(--muted);
}
.enquiry-sidebar {
    display: grid;
    gap: 16px;
}
.sidebar-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.sidebar-card p:last-child {
    color: var(--muted);
    font-size: .84rem;
}
.compact-card {
    background: var(--bg-deep);
}
.contact-email {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    word-break: break-word;
}
.contact-email:hover {
    color: var(--brand);
}
.sidebar-steps {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 17px 0;
    border-top: 1px solid var(--border-soft);
}
.sidebar-steps li:first-child {
    border-top: 0;
}
.sidebar-steps span {
    color: var(--brand);
    font-size: .68rem;
    font-weight: 900;
}
.sidebar-steps strong,
.sidebar-steps small {
    display: block;
}
.sidebar-steps small {
    margin-top: 3px;
    color: var(--muted-2);
}
.fit-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.fit-list li {
    position: relative;
    padding: 11px 0 11px 22px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted);
}
.fit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--status);
}
.partner-enquiry-section {
    border-top: 1px solid var(--border-soft);
    background: var(--bg-deep);
}

/* Grav Form plugin, restyled to the Web Agency On system. */
.wao-form .form-wrapper {
    margin: 0;
}
.wao-form form {
    display: grid;
    gap: 20px;
}
.wao-form .form-field {
    margin: 0;
}
.wao-form label,
.wao-form .form-label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: .82rem;
    font-weight: 760;
}
.wao-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.wao-form textarea,
.wao-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: 0;
    background: #0a111b;
    color: var(--text);
    box-shadow: none;
}
.wao-form textarea {
    min-height: 140px;
    resize: vertical;
}
.wao-form input:focus,
.wao-form textarea:focus,
.wao-form select:focus {
    border-color: rgba(56,189,248,.7);
    box-shadow: 0 0 0 3px rgba(56,189,248,.09);
}
.wao-form input::placeholder,
.wao-form textarea::placeholder {
    color: #637089;
}
.wao-form select option {
    background: var(--surface);
    color: var(--text);
}
.wao-form .form-field.checkbox,
.wao-form .checkboxes {
    color: var(--muted);
    font-size: .82rem;
}
.wao-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: var(--brand-strong);
}
.wao-form .buttons,
.wao-form .form-buttons {
    margin-top: 7px;
}
.wao-form button[type="submit"],
.wao-form input[type="submit"] {
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    background: var(--brand-strong);
    color: #fff;
    font-weight: 820;
}
.wao-form button[type="submit"]:hover,
.wao-form input[type="submit"]:hover {
    background: var(--brand);
    color: var(--bg-deep);
}
.wao-form .form-message,
.wao-form .alert {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
}
.wao-form .error,
.wao-form .form-errors,
.wao-form .form-field.error {
    color: #fda4af;
}
.form-warning {
    padding: 14px;
    border: 1px solid rgba(251,191,36,.35);
    border-radius: 10px;
    color: #fbbf24;
    background: rgba(251,191,36,.08);
}

.thanks-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 0;
}
.thanks-shell {
    max-width: 800px;
    text-align: center;
}
.thanks-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--status);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}
.thanks-page h1 {
    margin: 18px 0;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: .96;
    letter-spacing: -.07em;
}
.thanks-page p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.06rem;
}
.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-top: 30px;
}

.form-privacy-note {
    margin: 13px 0 0;
    color: var(--muted-2);
    font-size: .74rem;
}
.form-privacy-note a {
    color: var(--brand);
}
