:root {
    --bg: #0c0e16;
    --panel: #151826;
    --elev: #1c2031;
    --fg: #f0edff;
    --dim: rgba(240, 237, 255, 0.6);
    --faint: rgba(240, 237, 255, 0.35);
    --rule: rgba(240, 237, 255, 0.09);
    --accent: #c8c8d4;
    --violet: #1a1c2e;
    --blue: #1a1c2e;
    --gradient: linear-gradient(120deg, #1a1c2e 0%, #1a1c2e 100%);
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: clip;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--violet);
    color: #fff;
}

html[lang="de"] [lang="en"],
html[lang="en"] [lang="de"] {
    display: none;
}

@keyframes rcFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes rcFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rc-float {
    animation: rcFloat 7s ease-in-out infinite;
}

.rc-fade-up {
    animation: rcFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rc-fade-up-1 {
    animation-delay: 0.05s;
}

.rc-fade-up-2 {
    animation-delay: 0.18s;
}

.rc-fade-up-3 {
    animation-delay: 0.32s;
}

.rc-cta {
    transition: transform .25s ease, box-shadow .25s ease;
}

.rc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26, 28, 46, 0.45);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-reveal].rc-in {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-stagger] > *,
[data-reveal-stagger] > article {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal-stagger].rc-in > *:nth-child(1),
[data-reveal-stagger].rc-in > article:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

[data-reveal-stagger].rc-in > *:nth-child(2),
[data-reveal-stagger].rc-in > article:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

[data-reveal-stagger].rc-in > *:nth-child(3),
[data-reveal-stagger].rc-in > article:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.16s;
}

[data-reveal-stagger].rc-in > *:nth-child(4),
[data-reveal-stagger].rc-in > article:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.24s;
}

[data-reveal-stagger].rc-in > *:nth-child(5),
[data-reveal-stagger].rc-in > article:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
}

[data-reveal-stagger].rc-in > *:nth-child(n+6),
[data-reveal-stagger].rc-in > article:nth-child(n+6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .rc-float, .rc-fade-up {
        animation: none !important;
    }

    [data-reveal], [data-reveal-stagger] > *, [data-reveal-stagger] > article {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

section > div,
section > article,
section > form,
section > dl,
section > ol,
section > header,
footer > div {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

section > [aria-hidden] {
    max-width: none;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
}

.eyebrow.muted {
    color: var(--faint);
}

.accent {
    color: var(--accent);
}

.muted {
    color: var(--faint);
}

.small {
    font-size: 11px;
    color: var(--dim);
    margin-top: 6px;
}

.bullet {
    color: var(--accent);
    font-size: 9px;
    transform: translateY(-1px);
    flex-shrink: 0;
}

em {
    font-style: normal;
    font-weight: 600;
}

.rc-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 56px;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.rc-nav.rc-nav-scrolled {
    background-color: rgba(12, 14, 22, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(240, 237, 255, 0.12);
}

.rc-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.rc-brand {
    text-decoration: none;
    display: block;
}

.rc-brand img {
    height: 40px;
    width: auto;
    display: block;
}

.rc-nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
}

.rc-nav-links a {
    color: var(--fg);
    text-decoration: none;
    font-weight: 500;
}

.rc-nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rc-lang {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.rc-lang button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--faint);
}

.rc-lang button.is-active {
    color: var(--fg);
}

.rc-lang span {
    color: var(--faint);
    font-size: 11px;
}

.rc-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--bg);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.rc-cta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26, 28, 46, 0.45);
}

.rc-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fg);
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--rule);
}

.rc-hero {
    padding: 88px 56px 96px;
    position: relative;
}

.rc-hero-inner {
    position: relative;
}

.rc-rocket {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.rc-rocket-halo {
    position: absolute;
    inset: -140px;
    background: radial-gradient(circle at 50% 50%,
    rgba(200, 200, 212, 0.55) 0%,
    rgba(26, 28, 46, 0.30) 28%,
    rgba(26, 28, 46, 0.10) 55%,
    rgba(26, 28, 46, 0) 80%);
    filter: blur(10px);
}

.rc-rocket-glow-soft,
.rc-rocket-glow-deep,
.rc-rocket-white {
    position: absolute;
    inset: 0;
    -webkit-mask-image: url(/assets/rocket-mark-white.png);
    mask-image: url(/assets/rocket-mark-white.png);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.rc-rocket-glow-soft {
    background: #c8c8d4;
    filter: blur(40px);
    opacity: 0.9;
}

.rc-rocket-glow-deep {
    background: #1a1c2e;
    filter: blur(80px);
    opacity: 0.75;
}

.rc-rocket-white {
    background: #fff;
}

.rc-hero-copy {
    position: relative;
    max-width: 760px;
}

.rc-hero-copy h1 {
    margin: 0;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.96;
    text-wrap: balance;
}

.rc-hero-lede {
    margin: 32px 0 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--fg);
    text-wrap: pretty;
    max-width: 560px;
}

.rc-hero-ctas {
    margin-top: 36px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rc-hero-ctas .rc-cta-pill {
    padding: 13px 22px;
    font-size: 14px;
}

.rc-hero-stats {
    margin: 80px 0 0;
    padding: 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
}

.rc-hero-stats > div {
    padding: 18px 24px;
    border-right: 1px solid var(--rule);
}

.rc-hero-stats > div:first-child {
    padding-left: 0;
}

.rc-hero-stats > div:last-child {
    border-right: none;
}

.rc-hero-stats dt {
    font-size: 10px;
    color: var(--faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.rc-hero-stats dd {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-feature-settings: "tnum";
}

.rc-services {
    padding: 24px 56px 56px;
    position: relative;
}

.rc-section-head {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 28px;
}

.rc-section-head h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.0;
}

.rc-section-head p {
    margin: 0;
    font-size: 14px;
    color: var(--dim);
    line-height: 1.55;
}

.rc-service {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
}

.rc-service:last-of-type {
    border-bottom: none;
}

.rc-service-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.rc-service-body h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.rc-service-lead {
    margin: 8px 0 0;
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
    text-wrap: pretty;
}

.rc-service-text {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dim);
    text-wrap: pretty;
    max-width: 540px;
}

.rc-service-points {
    margin: 0;
    padding: 0 0 0 22px;
    list-style: none;
    border-left: 1px solid var(--rule);
}

.rc-service-points li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
    line-height: 1.5;
}

.rc-work {
    padding: 72px 56px;
    border-top: 1px solid var(--rule);
    background: var(--panel);
}

.rc-work-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    gap: 40px;
}

.rc-work-head h2 {
    margin: 0;
    font-size: 88px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.9;
}

.rc-work-head p {
    margin: 8px 0 0;
    font-size: 16px;
    color: var(--dim);
}

.rc-work-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1.5px solid var(--fg);
    padding-bottom: 3px;
    flex-shrink: 0;
}

.rc-work-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.rc-work-shot {
    margin: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--rule);
}

.rc-work-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.rc-work-meta p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg);
    text-wrap: pretty;
}

.rc-work-meta table {
    margin-top: 24px;
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.rc-work-meta tr {
    border-top: 1px solid var(--rule);
}

.rc-work-meta td {
    padding: 10px 0;
    color: var(--dim);
}

.rc-work-meta td:last-child {
    text-align: right;
    color: var(--fg);
    font-weight: 600;
}

.rc-principles {
    padding: 72px 56px 64px;
    border-top: 1px solid var(--rule);
}

.rc-principles-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 40px;
}

.rc-principles-head h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.05;
    max-width: 720px;
    text-wrap: balance;
}

.rc-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rc-principles-grid article {
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--rule);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rc-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.rc-principles-grid h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.rc-principles-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dim);
    text-wrap: pretty;
}

.rc-quote {
    padding: 96px 56px;
    border-top: 1px solid var(--rule);
    background: linear-gradient(180deg, var(--bg) 0%, rgba(26, 28, 46, 0.18) 100%);
    position: relative;
    overflow: hidden;
}

.rc-quote-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(26, 28, 46, 0.22) 0%, rgba(26, 28, 46, 0) 70%);
    pointer-events: none;
}

.rc-quote-inner {
    position: relative;
    text-align: center;
}

.rc-quote-mark {
    display: block;
    font-size: 96px;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.5;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    height: 48px;
}

.rc-quote blockquote {
    margin: 0 auto;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.15;
    color: var(--fg);
    max-width: 1040px;
    text-wrap: balance;
}

.rc-quote blockquote em {
    color: var(--accent);
    font-weight: 600;
}

.rc-quote .eyebrow {
    margin-top: 28px;
}

.rc-quote > .rc-quote-inner > p {
    margin: 32px auto 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dim);
    max-width: 640px;
    text-wrap: pretty;
}

.rc-engagement {
    padding: 72px 56px 64px;
    border-top: 1px solid var(--rule);
}

.rc-engagement-head {
    margin-bottom: 36px;
}

.rc-engagement-head h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 880px;
    text-wrap: balance;
}

.rc-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rc-engagement-grid article {
    background: var(--panel);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rc-engagement-grid h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.rc-engagement-sub {
    font-size: 13px;
    color: var(--dim);
}

.rc-engagement-price {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--fg);
    font-feature-settings: "tnum";
}

.rc-engagement-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--dim);
    text-wrap: pretty;
}

.rc-engagement-grid ul {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--rule);
}

.rc-engagement-grid li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 12.5px;
    color: var(--fg);
}

.rc-faq {
    padding: 72px 56px 64px;
    border-top: 1px solid var(--rule);
}

.rc-faq-head {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 56px;
    align-items: start;
}

.rc-faq-head h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.05;
    text-wrap: balance;
}

.rc-faq-head > div > p {
    margin-top: 16px;
    font-size: 13px;
    color: var(--dim);
    max-width: 320px;
    line-height: 1.6;
}

.rc-faq dl {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--rule);
}

.rc-faq dl > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}

.rc-faq dt {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.rc-faq-num {
    font-size: 12px;
    color: var(--faint);
    letter-spacing: 0.04em;
    font-weight: 500;
    flex-shrink: 0;
}

.rc-faq dt > span:last-child {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--fg);
}

.rc-faq dd {
    margin: 8px 0 0 32px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--dim);
    text-wrap: pretty;
    max-width: 640px;
}

.rc-contact {
    padding: 72px 56px;
    position: relative;
}

.rc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.rc-contact-intro h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
    text-wrap: balance;
}

.rc-contact-intro > p {
    margin-top: 18px;
    font-size: 14px;
    color: var(--dim);
    max-width: 420px;
    line-height: 1.6;
}

.rc-contact-direct {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
}

.rc-contact-direct .eyebrow {
    margin-bottom: 14px;
}

.rc-contact-phone {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 4px;
}

.rc-contact-mail {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
}

.rc-contact-direct address {
    font-style: normal;
    font-size: 12px;
    color: var(--dim);
    line-height: 1.7;
}

.rc-contact-form {
    background: var(--panel);
    padding: 28px;
    border-radius: 10px;
    border: 1px solid var(--rule);
    position: relative;
}

.rc-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.rc-contact-form label {
    display: block;
    margin-bottom: 18px;
}

.rc-contact-form label > span {
    font-size: 11px;
    color: var(--faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.rc-contact-form input[type="text"],
.rc-contact-form input[type="email"],
.rc-contact-form input[type="tel"],
.rc-contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 6px;
    background: var(--bg);
    border: 1px solid var(--rule);
    color: var(--fg);
    padding: 10px;
    font-size: 14px;
    font-family: inherit;
    border-radius: 6px;
    outline: none;
}

.rc-contact-form textarea {
    resize: none;
}

.rc-contact-form input:focus,
.rc-contact-form textarea:focus {
    border-color: var(--accent);
}

.rc-contact-block {
    margin-bottom: 18px;
}

.rc-contact-interests {
    margin: 0 0 22px;
    padding: 0;
    border: none;
}

.rc-contact-interests legend {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.rc-contact-interests legend > span:first-child {
    font-size: 11px;
    color: var(--faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.rc-contact-interests legend > span.muted {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rc-contact-chip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
}

.rc-contact-chip {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 16px !important;
    margin: 0 !important;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--dim);
    transition: color .15s ease, background .15s ease;
    user-select: none;
}

.rc-contact-chip:nth-child(2),
.rc-contact-chip:nth-child(4) {
    border-left: 1px solid var(--rule);
}

.rc-contact-chip:nth-child(3),
.rc-contact-chip:nth-child(4) {
    border-top: 1px solid var(--rule);
}

.rc-contact-chip input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.rc-contact-chip .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--rule);
    flex-shrink: 0;
    transition: background .15s ease, border-color .15s ease;
}

.rc-contact-chip:has(input:checked) {
    background: var(--bg);
    color: var(--fg);
    font-weight: 600;
}

.rc-contact-chip:has(input:checked) .dot {
    background: var(--accent);
    border-color: var(--accent);
}

.rc-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.rc-contact-submit {
    background: #fff;
    color: var(--bg);
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s ease;
}

.rc-contact-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.rc-contact-status {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--fg);
    border: 1px solid var(--rule);
}

.rc-contact-status.is-ok {
    border-color: var(--accent);
    background: rgba(200, 200, 212, 0.08);
}

.rc-contact-status.is-err {
    border-color: rgba(255, 140, 140, 0.4);
    background: rgba(255, 80, 80, 0.06);
}

.rc-footer {
    padding: 40px 56px 24px;
    border-top: 1px solid var(--rule);
}

.rc-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.rc-footer-brand img {
    height: 34px;
    width: auto;
    display: block;
}

.rc-footer-brand p {
    margin-top: 12px;
    font-size: 12px;
    color: var(--dim);
    line-height: 1.6;
    max-width: 340px;
}

.rc-footer-col {
    display: flex;
    flex-direction: column;
}

.rc-footer-col .eyebrow {
    margin-bottom: 10px;
    color: var(--faint);
}

.rc-footer-col a,
.rc-footer-col span {
    font-size: 13px;
    line-height: 1.9;
    color: var(--fg);
    text-decoration: none;
}

.rc-footer-bar {
    margin: 32px auto 0;
    max-width: 1320px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--faint);
}

.page-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 24px;
}

.legal h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 14px 0 24px;
    text-wrap: balance;
}

.legal h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 32px 0 8px;
}

.legal p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dim);
    text-wrap: pretty;
}

.legal .block {
    margin: 8px 0 16px;
    font-style: normal;
    color: var(--dim);
    line-height: 1.7;
}

.legal a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal strong {
    color: var(--fg);
    font-weight: 600;
}

.legal hr {
    margin: 32px 0 0;
    border: none;
    border-top: 1px solid var(--rule);
}

.legal .meta {
    color: var(--faint);
    font-size: 12px;
    margin-top: 12px;
}

@media (max-width: 1100px) {
    .rc-section-head,
    .rc-faq-head,
    .rc-contact-grid,
    .rc-work-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rc-engagement-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rc-footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .rc-hero-copy h1 {
        font-size: 64px;
    }

    .rc-work-head h2 {
        font-size: 64px;
    }

    .rc-nav-links {
        display: none;
    }

    .rc-rocket {
        width: 200px;
        height: 200px;
        top: 0;
        right: -10px;
        opacity: 0.5;
    }

    .rc-hero {
        padding: 64px 40px 80px;
    }

    .rc-services,
    .rc-work,
    .rc-principles,
    .rc-quote,
    .rc-engagement,
    .rc-faq,
    .rc-contact {
        padding-left: 40px;
        padding-right: 40px;
    }

    .rc-footer {
        padding: 40px 40px 24px;
    }
}

@media (max-width: 720px) {
    .rc-nav {
        padding: 16px 24px;
    }

    .rc-nav-links {
        display: none;
    }

    .rc-brand img {
        height: 48px;
    }

    .rc-hero,
    .rc-services,
    .rc-work,
    .rc-principles,
    .rc-quote,
    .rc-engagement,
    .rc-faq,
    .rc-contact,
    .rc-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .rc-hero {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .rc-hero-copy h1 {
        font-size: 44px;
    }

    .rc-rocket {
        top: -10px;
        right: -50px;
        width: 150px;
        height: 150px;
        opacity: 0.45;
    }

    .rc-nav-right .rc-cta-pill {
        display: none;
    }

    .rc-nav-right {
        gap: 14px;
    }

    .rc-hero-stats {
        grid-template-columns: 1fr;
    }

    .rc-hero-stats > div {
        border-right: none;
        border-bottom: 1px solid var(--rule);
        padding-left: 0 !important;
    }

    .rc-service {
        grid-template-columns: 1fr;
        gap: 16px;
        border-bottom: none;
        padding: 24px 0;
    }

    .rc-service-points {
        border-left: none;
        padding-left: 0;
    }

    .rc-service-points li:last-child {
        border-bottom: none;
    }

    .rc-work-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .rc-work-head h2 {
        font-size: 56px;
    }

    .rc-principles-grid,
    .rc-engagement-grid,
    .rc-footer-inner {
        grid-template-columns: 1fr;
    }

    .rc-quote {
        padding: 64px 24px;
    }

    .rc-quote blockquote {
        font-size: 36px;
    }

    .rc-contact-row {
        grid-template-columns: 1fr;
    }

    .rc-contact-chip-grid {
        grid-template-columns: 1fr;
    }

    .rc-contact-chip:nth-child(2),
    .rc-contact-chip:nth-child(4) {
        border-left: none;
    }

    .rc-contact-chip:nth-child(n+2) {
        border-top: 1px solid var(--rule);
    }

    .rc-footer-bar {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}
