:root {
    color-scheme: dark;
    --bg: #060b14;
    --bg-deep: #03070d;
    --surface: #0b1422;
    --surface-raised: #101b2b;
    --surface-soft: #142236;
    --surface-glass: rgba(11, 20, 34, 0.78);
    --line: rgba(154, 180, 212, 0.16);
    --line-strong: rgba(154, 180, 212, 0.3);
    --text: #f4f8fd;
    --muted: #a4b2c4;
    --subtle: #718198;
    --accent: #62dcff;
    --accent-strong: #20bde9;
    --violet: #9a8cff;
    --lime: #b6ef6f;
    --orange: #ffb86b;
    --danger: #ff8d94;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    --header-bg: rgba(6, 11, 20, 0.78);
    --radius-lg: 28px;
    --radius-md: 19px;
    --radius-sm: 12px;
    --container: 1180px;
    --header-height: 76px;
    --transition: 180ms ease;
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg: #f4f7fb;
    --bg-deep: #eaf0f6;
    --surface: #ffffff;
    --surface-raised: #f8fbff;
    --surface-soft: #eaf2fa;
    --surface-glass: rgba(255, 255, 255, 0.84);
    --line: rgba(32, 64, 95, 0.13);
    --line-strong: rgba(32, 64, 95, 0.24);
    --text: #122033;
    --muted: #52647a;
    --subtle: #50657a;
    --accent: #007da6;
    --accent-strong: #006c91;
    --violet: #6654d9;
    --lime: #4d7800;
    --orange: #9b5500;
    --danger: #b62d3b;
    --shadow: 0 24px 70px rgba(28, 52, 78, 0.12);
    --header-bg: rgba(244, 247, 251, 0.84);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(98, 220, 255, 0.07), transparent 27rem),
        radial-gradient(circle at 86% 34%, rgba(154, 140, 255, 0.06), transparent 31rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -0.035em;
    line-height: 1.18;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 9px;
    background: var(--text);
    color: var(--bg);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.3;
}

.eyebrow > span {
    width: 28px;
    height: 1px;
    background: currentColor;
    box-shadow: 8px 0 20px currentColor;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.button--primary {
    background: var(--accent);
    color: #031019;
    box-shadow: 0 12px 30px rgba(32, 189, 233, 0.2);
}

:root[data-theme="light"] .button--primary {
    color: #fff;
}

.button--primary:hover {
    background: #8ae6ff;
    box-shadow: 0 15px 35px rgba(32, 189, 233, 0.28);
}

:root[data-theme="light"] .button--primary:hover {
    background: var(--accent-strong);
}

.button--secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

:root[data-theme="light"] .button--secondary {
    background: rgba(255, 255, 255, 0.58);
}

.button--secondary:hover {
    border-color: var(--accent);
    background: rgba(98, 220, 255, 0.08);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: var(--header-bg);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(98, 220, 255, 0.35);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(98, 220, 255, 0.18), rgba(154, 140, 255, 0.16));
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: inset 0 0 22px rgba(98, 220, 255, 0.05);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 0.96rem;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--subtle);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 10px 13px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 4px;
    left: 13px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color var(--transition), background var(--transition);
}

.icon-button:hover,
.menu-toggle:hover {
    border-color: var(--line-strong);
    background: rgba(98, 220, 255, 0.07);
}

.theme-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon--sun,
:root[data-theme="light"] .theme-icon--moon {
    display: none;
}

:root[data-theme="light"] .theme-icon--sun {
    display: block;
}

.menu-toggle {
    display: none;
    align-content: center;
    gap: 4px;
}

.menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, transparent 0%, rgba(6, 11, 20, 0.14) 65%, var(--bg) 100%),
        linear-gradient(110deg, rgba(98, 220, 255, 0.035), transparent 50%);
}

:root[data-theme="light"] .hero {
    background:
        linear-gradient(180deg, transparent 0%, rgba(244, 247, 251, 0.12) 65%, var(--bg) 100%),
        linear-gradient(110deg, rgba(0, 125, 166, 0.04), transparent 50%);
}

.hero-grid,
.cta-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 88%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 88%);
    opacity: 0.42;
}

.hero-glow {
    position: absolute;
    width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.hero-glow--one {
    top: -270px;
    right: 7%;
    border: 1px solid rgba(98, 220, 255, 0.14);
    box-shadow: 0 0 100px rgba(98, 220, 255, 0.07), inset 0 0 100px rgba(98, 220, 255, 0.04);
}

.hero-glow--two {
    bottom: -330px;
    left: -80px;
    width: 560px;
    border: 1px solid rgba(154, 140, 255, 0.1);
    box-shadow: 0 0 130px rgba(154, 140, 255, 0.06), inset 0 0 120px rgba(154, 140, 255, 0.04);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
    padding-top: 72px;
    padding-bottom: 84px;
}

.hero-copy {
    max-width: 700px;
}

.hero h1 {
    max-width: 740px;
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 850;
    letter-spacing: -0.07em;
    line-height: 1.03;
}

.hero-line {
    white-space: nowrap;
}

.hero h1 em {
    background: linear-gradient(100deg, var(--accent), #b0a5ff 62%, var(--lime));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1rem, 1.55vw, 1.16rem);
    line-height: 1.9;
}

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

.hero-facts {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

.hero-facts li {
    min-width: 120px;
    padding: 0 26px;
    border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-facts span {
    margin-top: 3px;
    color: var(--subtle);
    font-size: 0.7rem;
    font-weight: 700;
}

.launch-panel {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 48%),
        var(--surface-glass);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
}

.launch-panel::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 18%;
    left: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 3px 2px 18px;
    border-bottom: 1px solid var(--line);
}

.panel-kicker,
.widget-heading p {
    margin-bottom: 6px;
    color: var(--subtle);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.panel-heading h2 {
    margin: 0;
    font-size: 1.15rem;
}

.panel-signal {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(182, 239, 111, 0.2);
    border-radius: 999px;
    background: rgba(182, 239, 111, 0.07);
    color: var(--lime);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.panel-signal i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.launch-list {
    display: grid;
    gap: 8px;
}

.launch-list > a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    padding: 11px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.launch-list > a:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    transform: translateX(3px);
}

.launch-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 13px;
    background: color-mix(in srgb, currentColor 10%, transparent);
}

.launch-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.launch-icon--cyan { color: var(--accent); }
.launch-icon--violet { color: var(--violet); }
.launch-icon--lime { color: var(--lime); }
.launch-icon--orange { color: var(--orange); }

.launch-list > a > span:nth-child(2) {
    min-width: 0;
}

.launch-list strong,
.launch-list small {
    display: block;
}

.launch-list strong {
    overflow: hidden;
    font-size: 0.87rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.launch-list small {
    margin-top: 2px;
    color: var(--subtle);
    font-size: 0.67rem;
}

.launch-arrow,
.operator-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--subtle);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--transition), transform var(--transition);
}

.launch-list > a:hover .launch-arrow,
.operator-link:hover .operator-arrow {
    stroke: var(--accent);
    transform: translate(2px, -2px);
}

.panel-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 18px 0 0;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: var(--subtle);
    font-size: 0.67rem;
}

.panel-note span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 0.62rem;
}

.quick-section,
.services-section,
.cloud-section,
.community-section,
.operator-section,
.cta-section {
    padding: clamp(84px, 10vw, 132px) 0;
}

.quick-section {
    padding-bottom: 72px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 38px;
}

.section-heading h2,
.cloud-copy h2,
.operator-intro h2,
.cta-card h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 820;
}

.section-heading > p:last-child,
.section-heading--inline > p,
.operator-intro > div > p:last-child,
.cta-card > div > p:last-child {
    margin: 0;
    color: var(--muted);
}

.section-heading--inline {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading--inline > div {
    flex: 0 0 auto;
}

.section-heading--inline > p {
    max-width: 460px;
    padding-bottom: 7px;
    text-align: right;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.purpose-card {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.purpose-card:last-child {
    border-right: 0;
}

.purpose-card:hover {
    z-index: 1;
    background: linear-gradient(150deg, rgba(98, 220, 255, 0.08), transparent 68%);
    transform: translateY(-4px);
}

.purpose-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: var(--subtle);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

.purpose-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    color: var(--accent);
}

.purpose-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.purpose-card strong {
    margin-bottom: 7px;
    font-size: 1rem;
}

.purpose-card small {
    color: var(--subtle);
    font-size: 0.72rem;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    padding-top: 28px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 750;
    transition: color var(--transition);
}

.purpose-card:hover .text-link {
    color: var(--accent);
}

.text-link b {
    font-size: 1rem;
    transition: transform var(--transition);
}

.purpose-card:hover .text-link b {
    transform: translateX(4px);
}

.services-section {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}

.service-tools {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.search-field label,
.filter-label {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
}

.search-control {
    position: relative;
}

.search-control > svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--subtle);
    stroke-width: 1.7;
    stroke-linecap: round;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-control input {
    width: 100%;
    height: 48px;
    padding: 0 44px;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: none;
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-control input::placeholder {
    color: var(--subtle);
}

.search-control input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(98, 220, 255, 0.1);
}

.search-clear {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--subtle);
    font-size: 1.2rem;
    transform: translateY(-50%);
}

.search-clear:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.filter-list {
    display: flex;
    gap: 7px;
}

.filter-button {
    min-height: 44px;
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.filter-button:hover {
    border-color: var(--line-strong);
    color: var(--text);
}

.filter-button.is-active {
    border-color: rgba(98, 220, 255, 0.36);
    background: rgba(98, 220, 255, 0.1);
    color: var(--accent);
}

.results-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    color: var(--subtle);
    font-size: 0.7rem;
}

.results-row p {
    margin: 0;
}

.results-row > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.results-row > span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px color-mix(in srgb, var(--lime) 60%, transparent);
}

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

.service-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.service-card.is-filtered-out {
    display: none;
}

.service-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 13, 0.54), transparent 45%);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease, filter 300ms ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-image--contain img {
    object-fit: contain;
    padding: 48px;
}

.service-image--dark {
    background: #03070c;
}

.service-image--dark img {
    padding: 32px;
}

.card-badge {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(4, 9, 16, 0.72);
    color: #dce8f5;
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    backdrop-filter: blur(10px);
}

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

.service-kind {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-kind span {
    width: 13px;
    height: 1px;
    background: currentColor;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.24rem;
}

.service-card h3 + p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.82;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.tag-list li {
    padding: 5px 8px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface-raised);
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 700;
}

.service-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: auto 0 20px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-meta > div {
    padding-inline: 13px;
    border-left: 1px solid var(--line);
}

.service-meta > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.service-meta dt,
.service-meta dd {
    margin: 0;
}

.service-meta dt {
    margin-bottom: 3px;
    color: var(--subtle);
    font-size: 0.57rem;
    font-weight: 750;
}

.service-meta dd {
    overflow: hidden;
    font-size: 0.68rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-raised);
    font-size: 0.75rem;
    font-weight: 780;
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.card-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--subtle);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition), stroke var(--transition);
}

.card-link:hover {
    border-color: rgba(98, 220, 255, 0.34);
    background: rgba(98, 220, 255, 0.07);
    color: var(--accent);
}

.card-link:hover svg {
    stroke: var(--accent);
    transform: translate(2px, -2px);
}

.empty-state {
    margin-top: 20px;
    padding: 62px 24px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.empty-state > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--subtle);
}

.empty-state svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.empty-state h3 {
    margin-bottom: 7px;
    font-size: 1.1rem;
}

.empty-state p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.82rem;
}

.cloud-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 78% 48%, rgba(98, 220, 255, 0.1), transparent 29rem),
        var(--surface);
}

.cloud-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
    mask-image: radial-gradient(circle at center, black, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.cloud-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(480px, 1fr);
    gap: clamp(60px, 8vw, 110px);
    align-items: center;
}

.cloud-lead {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.9;
}

.cloud-points {
    display: grid;
    gap: 15px;
    margin-bottom: 32px;
}

.cloud-points > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cloud-points svg {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    padding: 7px;
    border: 1px solid rgba(98, 220, 255, 0.24);
    border-radius: 9px;
    background: rgba(98, 220, 255, 0.07);
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cloud-points span,
.cloud-points strong,
.cloud-points small {
    display: block;
}

.cloud-points strong {
    font-size: 0.81rem;
}

.cloud-points small {
    margin-top: 2px;
    color: var(--subtle);
    font-size: 0.66rem;
}

.cloud-dashboard {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--bg-deep);
    box-shadow: var(--shadow);
}

.cloud-dashboard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.66rem;
}

.cloud-dashboard__head > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cloud-dashboard__head strong {
    color: var(--text);
    font-size: 0.72rem;
}

.cloud-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.storage-visual {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 40px;
}

.storage-ring {
    position: relative;
    width: 174px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(from 200deg, var(--accent), var(--violet), var(--accent));
    box-shadow: 0 0 36px rgba(98, 220, 255, 0.12);
}

.storage-ring::before {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg-deep);
}

.storage-ring::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px dashed var(--line-strong);
    border-radius: 50%;
}

.storage-ring > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.storage-ring strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 850;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.storage-ring span {
    display: block;
    margin-top: 7px;
    color: var(--accent);
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.storage-copy small {
    color: var(--accent);
    font-family: ui-monospace, monospace;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.storage-copy strong {
    display: block;
    margin: 7px 0 10px;
    font-size: 1.1rem;
}

.storage-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.8;
}

.cloud-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cloud-stats > div {
    padding: 17px 20px;
    border-left: 1px solid var(--line);
}

.cloud-stats > div:first-child {
    border-left: 0;
}

.cloud-stats small,
.cloud-stats strong {
    display: block;
}

.cloud-stats small {
    margin-bottom: 4px;
    color: var(--subtle);
    font-size: 0.58rem;
}

.cloud-stats strong {
    overflow: hidden;
    font-size: 0.69rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cloud-stats strong i {
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--lime);
}

.cloud-notice {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.cloud-notice svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.7;
    stroke-linecap: round;
}

.cloud-notice p {
    margin: 0;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.75;
}

.community-section {
    background: var(--bg);
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.widget-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.widget-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.widget-logo {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: var(--surface-raised);
    color: var(--accent);
}

.widget-logo svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.widget-heading p,
.widget-heading h3 {
    margin: 0;
}

.widget-heading h3 {
    font-size: 1.08rem;
}

.widget-card > p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.77rem;
}

.external-badge {
    margin-left: auto;
    padding: 6px 9px;
    border: 1px solid rgba(255, 184, 107, 0.25);
    border-radius: 999px;
    background: rgba(255, 184, 107, 0.07);
    color: var(--orange);
    font-size: 0.58rem;
    font-weight: 800;
}

.embed-shell {
    min-height: 360px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px),
        var(--bg-deep);
    background-size: 28px 28px;
}

.embed-shell--compact {
    min-height: 250px;
}

.embed-shell iframe {
    width: 100%;
    height: 430px;
    border: 0;
    background: #111;
}

.embed-shell--compact iframe {
    height: 392px;
}

.embed-placeholder {
    max-width: 320px;
    padding: 28px;
    text-align: center;
}

.embed-placeholder strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.84rem;
}

.embed-placeholder p {
    margin-bottom: 18px;
    color: var(--subtle);
    font-size: 0.68rem;
}

.embed-orbit {
    position: relative;
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 18px;
    border: 1px solid rgba(154, 140, 255, 0.38);
    border-radius: 50%;
    box-shadow: inset 0 0 24px rgba(154, 140, 255, 0.1), 0 0 30px rgba(154, 140, 255, 0.08);
}

.embed-orbit::before,
.embed-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.embed-orbit::before {
    inset: 12px;
    border: 1px dashed var(--violet);
}

.embed-orbit::after {
    top: -3px;
    left: 27px;
    width: 7px;
    height: 7px;
    background: var(--violet);
    box-shadow: 0 0 12px var(--violet);
}

.embed-orbit--swap {
    border-color: rgba(98, 220, 255, 0.4);
}

.embed-orbit--swap::before {
    border-color: var(--accent);
}

.embed-orbit--swap::after {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.promo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-deep);
}

.promo-row small,
.promo-row code {
    display: block;
}

.promo-row small {
    margin-bottom: 3px;
    color: var(--subtle);
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.promo-row code {
    overflow-wrap: anywhere;
    color: var(--accent);
    font-size: 0.74rem;
}

.copy-button {
    flex: 0 0 auto;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface-raised);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 750;
}

.copy-button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.copy-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.inline-link {
    display: inline-flex;
    gap: 6px;
    margin-top: 14px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.risk-note {
    margin: 11px 0 0 !important;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 184, 107, 0.5);
    color: var(--subtle) !important;
    font-size: 0.6rem !important;
    line-height: 1.7;
}

.operator-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-deep);
}

.operator-intro {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: center;
    margin-bottom: 34px;
}

.operator-intro > div {
    max-width: 720px;
}

.lock-mark {
    flex: 0 0 auto;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    background: var(--surface);
    color: var(--accent);
    transform: rotate(3deg);
}

.lock-mark svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.operator-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.operator-panel summary {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    list-style: none;
    cursor: pointer;
}

.operator-panel summary::-webkit-details-marker {
    display: none;
}

.operator-panel summary > span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    font-weight: 780;
}

.operator-panel summary svg {
    width: 20px;
    height: 20px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 6px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.7;
    stroke-linecap: round;
    transition: transform var(--transition);
}

.operator-panel[open] summary svg {
    transform: rotate(45deg);
}

.operator-panel summary small {
    color: var(--subtle);
    font-family: ui-monospace, monospace;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
}

.operator-panel[open] summary {
    border-bottom: 1px solid var(--line);
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.operator-link {
    min-width: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--bg);
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}

.operator-link:hover {
    border-color: rgba(98, 220, 255, 0.3);
    background: rgba(98, 220, 255, 0.04);
}

.operator-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--accent);
}

.operator-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.operator-link > span:nth-child(2) {
    min-width: 0;
}

.operator-link strong,
.operator-link small,
.operator-link i {
    display: block;
}

.operator-link strong {
    overflow: hidden;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operator-link small {
    overflow: hidden;
    margin: 3px 0 7px;
    color: var(--subtle);
    font-size: 0.63rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operator-link i {
    width: fit-content;
    padding: 3px 6px;
    border: 1px solid rgba(255, 184, 107, 0.2);
    border-radius: 5px;
    color: var(--orange);
    font-size: 0.52rem;
    font-style: normal;
    font-weight: 750;
}

.operator-link i.status-warning {
    border-color: rgba(255, 141, 148, 0.24);
    color: var(--danger);
}

.cta-section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: clamp(34px, 6vw, 64px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 0%, rgba(98, 220, 255, 0.12), transparent 23rem),
        var(--surface);
}

.cta-card > *:not(.cta-grid) {
    position: relative;
    z-index: 1;
}

.cta-card > div:nth-child(2) {
    max-width: 670px;
}

.cta-card .eyebrow {
    margin-bottom: 14px;
}

.cta-card h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.site-footer {
    padding-top: 62px;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.ad-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ad-container:empty,
.ad-container > div:empty {
    display: none;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand p {
    margin: 19px 0 0;
    color: var(--subtle);
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    gap: clamp(50px, 8vw, 100px);
}

.footer-links > div {
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-links strong {
    margin-bottom: 4px;
    font-size: 0.72rem;
}

.footer-links a {
    color: var(--subtle);
    font-size: 0.68rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    min-height: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--subtle);
    font-size: 0.63rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: var(--surface-glass);
    color: var(--text);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), border-color var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    z-index: 200;
    min-width: 190px;
    max-width: calc(100% - 48px);
    padding: 11px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--surface-glass);
    color: var(--text);
    box-shadow: var(--shadow);
    font-size: 0.73rem;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.js .reveal {
    opacity: 1;
    transform: none;
}

.js .reveal.is-visible {
    animation: reveal-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.6rem);
    }

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

    .purpose-card:nth-child(2) {
        border-right: 0;
    }

    .purpose-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        right: 0;
        left: 0;
        max-height: 0;
        display: grid;
        gap: 3px;
        margin: 0;
        padding: 0 24px;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: var(--surface);
        box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, border-color 180ms ease;
    }

    .main-nav.is-open {
        max-height: 360px;
        padding-top: 12px;
        padding-bottom: 20px;
        border-bottom-color: var(--line);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px solid var(--line);
        font-size: 0.86rem;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 58px;
        padding-top: 76px;
        padding-bottom: 92px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .launch-panel {
        max-width: 690px;
    }

    .section-heading--inline {
        display: block;
    }

    .section-heading--inline > p {
        max-width: 580px;
        margin-top: 10px;
        text-align: left;
    }

    .service-tools {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .filter-list {
        flex-wrap: wrap;
        overflow: visible;
        padding-bottom: 0;
    }

    .filter-button {
        flex: 1 1 calc(50% - 7px);
    }

    .cloud-layout {
        grid-template-columns: 1fr;
    }

    .cloud-copy {
        max-width: 660px;
    }

    .cloud-dashboard {
        max-width: 680px;
    }

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

    .cta-card {
        display: block;
    }

    .cta-actions {
        justify-content: flex-start;
        margin-top: 28px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .brand-copy small {
        display: none;
    }

    .hero-layout {
        padding-top: 60px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .hero-line {
        white-space: normal;
    }

    .hero-line > span {
        display: block;
    }

    .hero h1 br {
        display: none;
    }

    .hero-lead {
        font-size: 0.94rem;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .button {
        flex: 1 1 170px;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-facts li {
        min-width: 0;
        padding: 0 13px;
    }

    .hero-facts span {
        font-size: 0.62rem;
    }

    .launch-panel {
        padding: 17px;
        border-radius: 21px;
    }

    .launch-list > a {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
        gap: 10px;
        padding: 9px;
    }

    .launch-icon {
        width: 42px;
        height: 42px;
    }

    .panel-signal {
        display: none;
    }

    .quick-section,
    .services-section,
    .cloud-section,
    .community-section,
    .operator-section,
    .cta-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .quick-section {
        padding-bottom: 55px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .cloud-copy h2,
    .operator-intro h2,
    .cta-card h2 {
        font-size: clamp(1.8rem, 9vw, 2.7rem);
    }

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

    .purpose-card {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .purpose-card:nth-child(3) {
        border-bottom: 1px solid var(--line);
    }

    .purpose-card:last-child {
        border-bottom: 0;
    }

    .service-tools {
        gap: 20px;
        padding: 17px;
    }

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

    .service-body {
        padding: 21px;
    }

    .storage-visual {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 30px 24px;
        text-align: center;
    }

    .storage-ring {
        width: 156px;
    }

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

    .cloud-stats > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .cloud-stats > div:first-child {
        border-top: 0;
    }

    .cloud-stats small {
        margin: 0;
    }

    .cloud-notice {
        margin: 14px;
    }

    .widget-card {
        padding: 20px;
        border-radius: 20px;
    }

    .widget-heading {
        flex-wrap: wrap;
    }

    .external-badge {
        flex: 0 0 auto;
    }

    .embed-shell {
        min-height: 320px;
    }

    .embed-shell--compact {
        min-height: 240px;
    }

    .operator-intro {
        display: block;
    }

    .lock-mark {
        display: none;
    }

    .operator-panel summary {
        min-height: 64px;
        padding: 15px 17px;
    }

    .operator-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .operator-link {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
        padding: 13px;
    }

    .cta-card {
        padding: 30px 23px;
        border-radius: 21px;
    }

    .cta-actions {
        display: grid;
    }

    .footer-main {
        display: block;
    }

    .footer-links {
        justify-content: space-between;
        gap: 30px;
        margin-top: 42px;
    }

    .footer-bottom {
        min-height: 82px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .back-to-top {
        display: none;
    }

    .toast {
        bottom: 74px;
    }
}

@media (max-width: 390px) {
    .header-inner {
        gap: 12px;
    }

    .brand-mark {
        width: 37px;
        height: 37px;
    }

    .brand-copy strong {
        font-size: 0.84rem;
    }

    .icon-button,
    .menu-toggle {
        width: 39px;
        height: 39px;
    }

    .hero-facts strong {
        font-size: 1rem;
    }

    .hero-facts span {
        font-size: 0.55rem;
    }

    .panel-heading h2 {
        font-size: 1rem;
    }

    .launch-list small {
        font-size: 0.6rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }

    .js .reveal.is-visible {
        animation: none;
    }
}

@media (forced-colors: active) {
    .button,
    .service-card,
    .purpose-card,
    .widget-card,
    .operator-panel {
        border: 1px solid CanvasText;
    }
}
