:root {
    --rsc-blue: #4ba7e8;
    --rsc-blue-bright: #72c4ff;
    --rsc-indigo: #315cb6;
    --rsc-ink: #050914;
    --rsc-panel: #0a1222;
    --rsc-panel-2: #0d1830;
    --rsc-line: rgba(111, 185, 244, 0.2);
    --rsc-copy: #d6e2f1;
    --rsc-copy-muted: #aebfd3;
    --rsc-white: #ffffff;
    --rsc-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

/*
 * Keep layout resets inside the page-content region. The former generic
 * .container/.container-fluid rules also matched the theme header and menu.
 */
.ryo-start-center-page {
    background: var(--rsc-ink);
}

.ryo-start-center-page main .entry-header,
.ryo-start-center-page main .page-header,
.ryo-start-center-page main .entry-title,
.ryo-start-center-page main .post-title {
    display: none !important;
}

.ryo-start-center-page .content-area,
.ryo-start-center-page main.site-main,
.ryo-start-center-page main .entry-content,
.rsc-template-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ryo-start-center-page main .entry-content > .rsc-page {
    max-width: none !important;
}

.rsc-page,
.rsc-page * {
    box-sizing: border-box;
}

.rsc-page {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 14%, rgba(54, 108, 205, 0.22), transparent 31rem),
        radial-gradient(circle at 86% 28%, rgba(75, 167, 232, 0.13), transparent 30rem),
        var(--rsc-ink);
    color: var(--rsc-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.rsc-page a {
    color: inherit;
    text-decoration: none;
}

.rsc-page p {
    margin: 0;
    color: var(--rsc-copy-muted);
    font-size: 18px;
    line-height: 1.72;
}

.rsc-page svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.rsc-shell {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.rsc-skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #fff;
    color: #06101d !important;
    font-size: 16px;
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.rsc-skip-link:focus {
    transform: translateY(0);
}

.rsc-hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    padding: 96px 0 86px;
    isolation: isolate;
}

.rsc-hero::before,
.rsc-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.rsc-hero::before {
    inset: 0;
    background: linear-gradient(110deg, rgba(3, 7, 16, 0.96) 4%, rgba(5, 10, 22, 0.82) 48%, rgba(5, 10, 22, 0.42) 100%);
    z-index: -2;
}

.rsc-hero::after {
    right: -15%;
    top: 0;
    width: 62%;
    height: 100%;
    background: radial-gradient(circle, rgba(75, 167, 232, 0.18), transparent 62%);
    filter: blur(20px);
    z-index: -1;
}

.rsc-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(92, 163, 230, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 163, 230, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 93%);
}

.rsc-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
    gap: 74px;
    align-items: center;
}

.rsc-eyebrow,
.rsc-kicker {
    color: var(--rsc-blue-bright);
    font-size: 14.5px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rsc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.rsc-eyebrow span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--rsc-blue), transparent);
}

.rsc-hero h1,
.rsc-section-header h2,
.rsc-final h2 {
    margin: 0;
    color: var(--rsc-white);
    font-weight: 760;
    letter-spacing: -0.035em;
}

.rsc-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 6.2vw, 78px);
    line-height: 1.03;
}

.rsc-hero__intro {
    max-width: 720px;
    margin-top: 28px !important;
    color: var(--rsc-copy) !important;
    font-size: 21px !important;
    line-height: 1.66 !important;
}

.rsc-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.rsc-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 16.5px;
    line-height: 1.2;
    font-weight: 760;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.rsc-button svg {
    width: 19px;
    height: 19px;
}

.rsc-button--primary {
    background: linear-gradient(135deg, var(--rsc-blue), #3c7cd9);
    color: #04101c !important;
    box-shadow: 0 12px 34px rgba(66, 154, 226, 0.25);
}

.rsc-button--secondary {
    border-color: rgba(158, 207, 246, 0.32);
    background: rgba(11, 20, 37, 0.58);
    color: var(--rsc-white) !important;
    backdrop-filter: blur(12px);
}

.rsc-button:hover,
.rsc-button:focus-visible {
    transform: translateY(-2px);
}

.rsc-button--primary:hover,
.rsc-button--primary:focus-visible {
    box-shadow: 0 16px 40px rgba(66, 154, 226, 0.34);
}

.rsc-button--secondary:hover,
.rsc-button--secondary:focus-visible {
    border-color: rgba(158, 207, 246, 0.62);
    background: rgba(18, 35, 61, 0.72);
}

.rsc-button:focus-visible,
.rsc-route-step:focus-visible,
.rsc-action-card__link:focus-visible {
    outline: 3px solid rgba(125, 203, 255, 0.95);
    outline-offset: 4px;
}

.rsc-hero__note {
    margin-top: 19px !important;
    font-size: 16.5px !important;
    color: #91a9c4 !important;
}

.rsc-hero__visual {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-items: center;
}

.rsc-logo-core {
    position: relative;
    z-index: 4;
    width: 194px;
    height: 194px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 51, 94, 0.96), rgba(5, 12, 26, 0.9) 66%, rgba(5, 12, 26, 0.25));
    box-shadow:
        0 0 0 1px rgba(117, 198, 255, 0.34),
        0 0 55px rgba(67, 160, 230, 0.34),
        inset 0 0 36px rgba(75, 167, 232, 0.13);
}

.rsc-logo-core img {
    width: 142px;
    height: 142px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(89, 179, 242, 0.28));
}

.rsc-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(102, 186, 244, 0.24);
}

.rsc-orbit::before,
.rsc-orbit::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rsc-blue-bright);
    box-shadow: 0 0 16px rgba(114, 196, 255, 0.92);
}

.rsc-orbit--outer {
    inset: 3%;
    animation: rsc-spin 22s linear infinite;
}

.rsc-orbit--outer::before {
    top: 10%;
    left: 20%;
}

.rsc-orbit--outer::after {
    right: 8%;
    bottom: 30%;
    width: 5px;
    height: 5px;
}

.rsc-orbit--middle {
    inset: 14%;
    border-style: dashed;
    animation: rsc-spin-reverse 17s linear infinite;
}

.rsc-orbit--middle::before {
    right: 14%;
    top: 18%;
    width: 6px;
    height: 6px;
}

.rsc-orbit--middle::after {
    left: 5%;
    bottom: 34%;
}

.rsc-orbit--inner {
    inset: 26%;
    border-color: rgba(102, 186, 244, 0.38);
    animation: rsc-pulse 4s ease-in-out infinite;
}

.rsc-orbit--inner::before,
.rsc-orbit--inner::after {
    display: none;
}

.rsc-scan {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.45;
}

.rsc-scan::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(114, 196, 255, 0.9), transparent);
    animation: rsc-spin 8s linear infinite;
}

.rsc-signal {
    position: absolute;
    z-index: 5;
    border-radius: 999px;
    background: rgba(114, 196, 255, 0.8);
    box-shadow: 0 0 15px rgba(114, 196, 255, 0.8);
}

.rsc-signal--one {
    width: 26px;
    height: 2px;
    right: 10%;
    top: 25%;
}

.rsc-signal--two {
    width: 2px;
    height: 30px;
    left: 18%;
    bottom: 18%;
}

.rsc-signal--three {
    width: 18px;
    height: 2px;
    left: 6%;
    top: 46%;
}

.rsc-route,
.rsc-paths,
.rsc-final {
    position: relative;
}

.rsc-route {
    padding: 92px 0 100px;
    background: linear-gradient(180deg, #07101e 0%, #081221 100%);
    border-top: 1px solid rgba(113, 183, 239, 0.11);
    border-bottom: 1px solid rgba(113, 183, 239, 0.13);
}

.rsc-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 40px;
}

.rsc-section-header--center {
    display: block;
    max-width: 790px;
    margin: 0 auto 42px;
    text-align: center;
}

.rsc-section-header h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4.1vw, 52px);
    line-height: 1.08;
}

.rsc-section-header > p,
.rsc-section-header--center > p {
    font-size: 18.5px;
    line-height: 1.72;
}

.rsc-section-header--center > p {
    margin-top: 18px;
}

.rsc-route__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rsc-route-step {
    position: relative;
    min-height: 220px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 28px;
    gap: 18px;
    align-items: center;
    padding: 30px 26px;
    border: 1px solid rgba(112, 186, 242, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(17, 34, 59, 0.92), rgba(9, 18, 33, 0.98)),
        var(--rsc-panel);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.rsc-route-step:hover {
    transform: translateY(-4px);
    border-color: rgba(113, 195, 250, 0.52);
    background: linear-gradient(135deg, rgba(21, 44, 76, 0.98), rgba(10, 21, 39, 1));
}

/* V1.0.1: larger route-number boxes with exact vertical and horizontal centering. */
.rsc-route-number {
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    padding: 0;
    border: 1px solid rgba(123, 203, 255, 0.46);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(68, 151, 222, 0.23), rgba(30, 75, 139, 0.16));
    color: #dff3ff;
    font-size: 32px;
    line-height: 1;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    text-align: center;
    box-shadow: inset 0 0 24px rgba(63, 149, 222, 0.12), 0 0 24px rgba(55, 143, 214, 0.09);
}

.rsc-route-step__body {
    min-width: 0;
    display: block;
}

.rsc-route-step__title {
    display: block;
    color: var(--rsc-white);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 760;
}

.rsc-route-step__copy {
    display: block;
    margin-top: 10px;
    color: var(--rsc-copy-muted);
    font-size: 17.5px;
    line-height: 1.66;
}

.rsc-route-step__arrow {
    color: var(--rsc-blue-bright);
    align-self: center;
}

.rsc-route-step__arrow svg {
    width: 25px;
    height: 25px;
    transition: transform 180ms ease;
}

.rsc-route-step:hover .rsc-route-step__arrow svg {
    transform: translateX(4px);
}

.rsc-paths {
    padding: 104px 0 112px;
    background:
        radial-gradient(circle at 72% 38%, rgba(55, 119, 207, 0.12), transparent 35rem),
        #050a14;
}

.rsc-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rsc-action-card {
    min-width: 0;
}

.rsc-action-card__link {
    position: relative;
    min-height: 354px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 27px 25px 24px;
    overflow: hidden;
    border: 1px solid rgba(102, 176, 234, 0.17);
    border-radius: 15px;
    background: linear-gradient(160deg, rgba(13, 27, 49, 0.96), rgba(7, 14, 27, 0.98));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
    transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.rsc-action-card__link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rsc-blue), transparent);
    transform: scaleX(0.2);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
}

.rsc-action-card__link:hover {
    transform: translateY(-5px);
    border-color: rgba(110, 194, 250, 0.48);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
}

.rsc-action-card__link:hover::before {
    transform: scaleX(0.85);
    opacity: 1;
}

.rsc-action-card__topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.rsc-action-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(112, 196, 251, 0.32);
    border-radius: 13px;
    background: rgba(52, 126, 191, 0.13);
    color: var(--rsc-blue-bright);
}

.rsc-action-card__icon svg {
    width: 27px;
    height: 27px;
}

.rsc-action-card__index {
    color: rgba(181, 217, 243, 0.52);
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.rsc-action-card__title {
    display: block;
    margin-top: 30px;
    color: var(--rsc-white);
    font-size: 23px;
    line-height: 1.24;
    font-weight: 760;
    letter-spacing: -0.015em;
}

.rsc-action-card__copy {
    display: block;
    margin-top: 14px;
    color: var(--rsc-copy-muted);
    font-size: 17.5px;
    line-height: 1.68;
}

.rsc-action-card__cta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--rsc-blue-bright);
    font-size: 16.5px;
    line-height: 1.3;
    font-weight: 750;
}

.rsc-action-card__cta svg {
    width: 19px;
    height: 19px;
    transition: transform 180ms ease;
}

.rsc-action-card__link:hover .rsc-action-card__cta svg {
    transform: translateX(4px);
}

.rsc-final {
    padding: 0 0 108px;
    background: #050a14;
}

.rsc-final__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 52px;
    align-items: center;
    padding: 48px 52px;
    border: 1px solid rgba(112, 187, 242, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(125deg, rgba(18, 44, 78, 0.92), rgba(7, 17, 33, 0.98)),
        var(--rsc-panel);
    box-shadow: var(--rsc-shadow);
}

.rsc-final h2 {
    margin-top: 11px;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.1;
}

.rsc-final p {
    max-width: 790px;
    margin-top: 17px;
    font-size: 18.5px;
    line-height: 1.72;
}

@keyframes rsc-spin {
    to { transform: rotate(360deg); }
}

@keyframes rsc-spin-reverse {
    to { transform: rotate(-360deg); }
}

@keyframes rsc-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.045); opacity: 1; }
}

@media (max-width: 1120px) {
    .rsc-hero__grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 44px;
    }

    .rsc-route__grid {
        grid-template-columns: 1fr;
    }

    .rsc-route-step {
        min-height: 0;
    }

    .rsc-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rsc-action-card__link {
        min-height: 320px;
    }
}

@media (max-width: 820px) {
    .rsc-shell {
        width: min(100% - 32px, 680px);
    }

    .rsc-hero {
        min-height: 0;
        padding: 78px 0 72px;
    }

    .rsc-hero__grid {
        grid-template-columns: 1fr;
    }

    .rsc-hero__visual {
        width: min(390px, 92vw);
        justify-self: center;
        grid-row: 1;
        margin-bottom: 4px;
    }

    .rsc-hero__content {
        text-align: center;
    }

    .rsc-eyebrow,
    .rsc-button-row {
        justify-content: center;
    }

    .rsc-hero__intro,
    .rsc-hero__note {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .rsc-section-header {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .rsc-final__panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 34px;
    }

    .rsc-final__panel .rsc-button {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .rsc-page {
        font-size: 17px;
    }

    .rsc-page p {
        font-size: 17px;
    }

    .rsc-shell {
        width: min(100% - 24px, 540px);
    }

    .rsc-hero {
        padding: 58px 0 62px;
    }

    .rsc-hero__visual {
        width: min(300px, 88vw);
    }

    .rsc-logo-core {
        width: 145px;
        height: 145px;
    }

    .rsc-logo-core img {
        width: 108px;
        height: 108px;
    }

    .rsc-hero h1 {
        font-size: clamp(41px, 13vw, 58px);
    }

    .rsc-hero__intro {
        font-size: 19px !important;
    }

    .rsc-button-row {
        flex-direction: column;
    }

    .rsc-button {
        width: 100%;
        min-height: 56px;
        font-size: 16.5px;
    }

    .rsc-route {
        padding: 72px 0 78px;
    }

    .rsc-route-step {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 20px;
    }

    .rsc-route-number {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 29px;
        border-radius: 13px;
    }

    .rsc-route-step__arrow {
        display: none;
    }

    .rsc-route-step__title {
        font-size: 20px;
    }

    .rsc-route-step__copy {
        font-size: 17px;
    }

    .rsc-paths {
        padding: 78px 0 84px;
    }

    .rsc-action-grid {
        grid-template-columns: 1fr;
    }

    .rsc-action-card__link {
        min-height: 0;
        padding: 25px 23px;
    }

    .rsc-action-card__title {
        font-size: 22px;
    }

    .rsc-action-card__copy {
        font-size: 17px;
    }

    .rsc-final {
        padding-bottom: 76px;
    }

    .rsc-final__panel {
        padding: 34px 24px;
    }

    .rsc-final__panel .rsc-button {
        justify-self: stretch;
    }
}


/* V1.0.2: strong theme-compatibility colors for dark page backgrounds. */
.rsc-page,
.rsc-hero h1,
.rsc-section-header h2,
.rsc-final h2,
.rsc-route-step__title,
.rsc-action-card__title {
    color: var(--rsc-white) !important;
}

.rsc-page p,
.rsc-hero__intro,
.rsc-hero__note,
.rsc-section-header > p,
.rsc-section-header--center > p,
.rsc-route-step__copy,
.rsc-action-card__copy,
.rsc-final p {
    color: var(--rsc-copy) !important;
}

.rsc-eyebrow,
.rsc-kicker,
.rsc-route-step__arrow,
.rsc-action-card__icon,
.rsc-action-card__cta {
    color: var(--rsc-blue-bright) !important;
}

.rsc-action-card__index {
    color: rgba(208, 231, 248, 0.72) !important;
}

.rsc-route-number {
    color: #eff9ff !important;
}

@media (prefers-reduced-motion: reduce) {
    .rsc-page *,
    .rsc-page *::before,
    .rsc-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
